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