pub struct AggregateFunctionImplsItem { /* private fields */ }Implementations§
Source§impl AggregateFunctionImplsItem
impl AggregateFunctionImplsItem
pub fn args<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn decomposable<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn deprecated<T>(self, value: T) -> AggregateFunctionImplsItemwhere
T: TryInto<Option<DeprecationStatus>>,
<T as TryInto<Option<DeprecationStatus>>>::Error: Display,
pub fn description<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn deterministic<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn implementation<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn intermediate<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn maxset<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn nullability<T>(self, value: T) -> AggregateFunctionImplsItemwhere
T: TryInto<Option<NullabilityHandling>>,
<T as TryInto<Option<NullabilityHandling>>>::Error: Display,
pub fn options<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn ordered<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn return_<T>(self, value: T) -> AggregateFunctionImplsItem
pub fn session_dependent<T>(self, value: T) -> AggregateFunctionImplsItemwhere
T: TryInto<Option<SessionDependent>>,
<T as TryInto<Option<SessionDependent>>>::Error: Display,
pub fn variadic<T>(self, value: T) -> AggregateFunctionImplsItemwhere
T: TryInto<Option<VariadicBehavior>>,
<T as TryInto<Option<VariadicBehavior>>>::Error: Display,
Trait Implementations§
Source§impl Clone for AggregateFunctionImplsItem
impl Clone for AggregateFunctionImplsItem
Source§fn clone(&self) -> AggregateFunctionImplsItem
fn clone(&self) -> AggregateFunctionImplsItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AggregateFunctionImplsItem
impl Debug for AggregateFunctionImplsItem
Source§impl Default for AggregateFunctionImplsItem
impl Default for AggregateFunctionImplsItem
Source§fn default() -> AggregateFunctionImplsItem
fn default() -> AggregateFunctionImplsItem
Returns the “default value” for a type. Read more
Source§impl From<AggregateFunctionImplsItem> for AggregateFunctionImplsItem
impl From<AggregateFunctionImplsItem> for AggregateFunctionImplsItem
Source§fn from(value: AggregateFunctionImplsItem) -> AggregateFunctionImplsItem
fn from(value: AggregateFunctionImplsItem) -> AggregateFunctionImplsItem
Converts to this type from the input type.
Source§impl TryFrom<AggregateFunctionImplsItem> for AggregateFunctionImplsItem
impl TryFrom<AggregateFunctionImplsItem> for AggregateFunctionImplsItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AggregateFunctionImplsItem,
) -> Result<AggregateFunctionImplsItem, ConversionError>
fn try_from( value: AggregateFunctionImplsItem, ) -> Result<AggregateFunctionImplsItem, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AggregateFunctionImplsItem
impl RefUnwindSafe for AggregateFunctionImplsItem
impl Send for AggregateFunctionImplsItem
impl Sync for AggregateFunctionImplsItem
impl Unpin for AggregateFunctionImplsItem
impl UnsafeUnpin for AggregateFunctionImplsItem
impl UnwindSafe for AggregateFunctionImplsItem
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more