pub struct AggregateRelation {
pub relation: Value,
}
Expand description
AggregateRelation
JSON schema
{
"type": "object",
"required": [
"relation"
],
"properties": {
"relation": {
"const": "AGGREGATE"
}
},
"additionalProperties": false
}
Fields§
§relation: Value
Implementations§
Source§impl AggregateRelation
impl AggregateRelation
pub fn builder() -> AggregateRelation
Trait Implementations§
Source§impl Clone for AggregateRelation
impl Clone for AggregateRelation
Source§fn clone(&self) -> AggregateRelation
fn clone(&self) -> AggregateRelation
Returns a duplicate 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 AggregateRelation
impl Debug for AggregateRelation
Source§impl<'de> Deserialize<'de> for AggregateRelation
impl<'de> Deserialize<'de> for AggregateRelation
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<&AggregateRelation> for AggregateRelation
impl From<&AggregateRelation> for AggregateRelation
Source§fn from(value: &AggregateRelation) -> Self
fn from(value: &AggregateRelation) -> Self
Converts to this type from the input type.
Source§impl From<AggregateRelation> for AggregateRelation
impl From<AggregateRelation> for AggregateRelation
Source§fn from(value: AggregateRelation) -> Self
fn from(value: AggregateRelation) -> Self
Converts to this type from the input type.
Source§impl From<AggregateRelation> for DialectSupportedRelationsItem
impl From<AggregateRelation> for DialectSupportedRelationsItem
Source§fn from(value: AggregateRelation) -> Self
fn from(value: AggregateRelation) -> Self
Converts to this type from the input type.
Source§impl Serialize for AggregateRelation
impl Serialize for AggregateRelation
Source§impl TryFrom<AggregateRelation> for AggregateRelation
impl TryFrom<AggregateRelation> for AggregateRelation
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AggregateRelation) -> Result<Self, ConversionError>
fn try_from(value: AggregateRelation) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AggregateRelation
impl RefUnwindSafe for AggregateRelation
impl Send for AggregateRelation
impl Sync for AggregateRelation
impl Unpin for AggregateRelation
impl UnwindSafe for AggregateRelation
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