pub struct AggregateFunction {
pub description: Option<String>,
pub impls: Vec<AggregateFunctionImplsItem>,
pub name: String,
}
Expand description
AggregateFunction
JSON schema
{
"type": "object",
"required": [
"impls",
"name"
],
"properties": {
"description": {
"type": "string"
},
"impls": {
"type": "array",
"items": {
"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
},
"minItems": 1
},
"name": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§description: Option<String>
§impls: Vec<AggregateFunctionImplsItem>
§name: String
Implementations§
Source§impl AggregateFunction
impl AggregateFunction
pub fn builder() -> AggregateFunction
Trait Implementations§
Source§impl Clone for AggregateFunction
impl Clone for AggregateFunction
Source§fn clone(&self) -> AggregateFunction
fn clone(&self) -> AggregateFunction
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 AggregateFunction
impl Debug for AggregateFunction
Source§impl<'de> Deserialize<'de> for AggregateFunction
impl<'de> Deserialize<'de> for AggregateFunction
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<&AggregateFunction> for AggregateFunction
impl From<&AggregateFunction> for AggregateFunction
Source§fn from(value: &AggregateFunction) -> Self
fn from(value: &AggregateFunction) -> Self
Converts to this type from the input type.
Source§impl From<AggregateFunction> for AggregateFunction
impl From<AggregateFunction> for AggregateFunction
Source§fn from(value: AggregateFunction) -> Self
fn from(value: AggregateFunction) -> Self
Converts to this type from the input type.
Source§impl Serialize for AggregateFunction
impl Serialize for AggregateFunction
Source§impl TryFrom<AggregateFunction> for AggregateFunction
impl TryFrom<AggregateFunction> for AggregateFunction
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AggregateFunction) -> Result<Self, ConversionError>
fn try_from(value: AggregateFunction) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AggregateFunction
impl RefUnwindSafe for AggregateFunction
impl Send for AggregateFunction
impl Sync for AggregateFunction
impl Unpin for AggregateFunction
impl UnwindSafe for AggregateFunction
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