pub struct AggregateFunctionImplsItem {
pub args: Option<Arguments>,
pub decomposable: Option<Decomposable>,
pub deterministic: Option<Deterministic>,
pub implementation: Option<Implementation>,
pub intermediate: Option<Intermediate>,
pub maxset: Option<Maxset>,
pub nullability: Option<NullabilityHandling>,
pub options: Option<Options>,
pub ordered: Option<Ordered>,
pub return_: ReturnValue,
pub session_dependent: Option<SessionDependent>,
pub variadic: Option<VariadicBehavior>,
}
Expand description
AggregateFunctionImplsItem
JSON schema
{
"type": "object",
"required": [
"return"
],
"properties": {
"args": {
"$ref": "#/$defs/arguments"
},
"decomposable": {
"$ref": "#/$defs/decomposable"
},
"deterministic": {
"$ref": "#/$defs/deterministic"
},
"implementation": {
"$ref": "#/$defs/implementation"
},
"intermediate": {
"$ref": "#/$defs/intermediate"
},
"maxset": {
"$ref": "#/$defs/maxset"
},
"nullability": {
"$ref": "#/$defs/nullabilityHandling"
},
"options": {
"$ref": "#/$defs/options"
},
"ordered": {
"$ref": "#/$defs/ordered"
},
"return": {
"$ref": "#/$defs/returnValue"
},
"sessionDependent": {
"$ref": "#/$defs/sessionDependent"
},
"variadic": {
"$ref": "#/$defs/variadicBehavior"
}
},
"additionalProperties": false
}
Fields§
§args: Option<Arguments>
§decomposable: Option<Decomposable>
§deterministic: Option<Deterministic>
§implementation: Option<Implementation>
§intermediate: Option<Intermediate>
§maxset: Option<Maxset>
§nullability: Option<NullabilityHandling>
§options: Option<Options>
§ordered: Option<Ordered>
§return_: ReturnValue
§session_dependent: Option<SessionDependent>
§variadic: Option<VariadicBehavior>
Implementations§
Source§impl AggregateFunctionImplsItem
impl AggregateFunctionImplsItem
pub fn builder() -> AggregateFunctionImplsItem
Trait Implementations§
Source§impl Clone for AggregateFunctionImplsItem
impl Clone for AggregateFunctionImplsItem
Source§fn clone(&self) -> AggregateFunctionImplsItem
fn clone(&self) -> AggregateFunctionImplsItem
Returns a copy of the value. Read more
1.0.0 · 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<'de> Deserialize<'de> for AggregateFunctionImplsItem
impl<'de> Deserialize<'de> for AggregateFunctionImplsItem
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&AggregateFunctionImplsItem> for AggregateFunctionImplsItem
impl From<&AggregateFunctionImplsItem> for AggregateFunctionImplsItem
Source§fn from(value: &AggregateFunctionImplsItem) -> Self
fn from(value: &AggregateFunctionImplsItem) -> Self
Converts to this type from the input type.
Source§impl From<AggregateFunctionImplsItem> for AggregateFunctionImplsItem
impl From<AggregateFunctionImplsItem> for AggregateFunctionImplsItem
Source§fn from(value: AggregateFunctionImplsItem) -> Self
fn from(value: AggregateFunctionImplsItem) -> Self
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<Self, ConversionError>
fn try_from(value: AggregateFunctionImplsItem) -> Result<Self, 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 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