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