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