pub struct LateralJoinRelation {
pub join_types: Option<LateralJoinTypes>,
pub metadata: Map<String, Value>,
pub relation: Value,
}Expand description
LateralJoinRelation
JSON schema
{
"type": "object",
"required": [
"relation"
],
"properties": {
"join_types": {
"$ref": "#/definitions/lateral_join_types"
},
"metadata": {
"description": "Arbitrary data created by the dialect author.",
"type": "object"
},
"relation": {
"const": "LATERAL_JOIN"
}
},
"additionalProperties": false
}Fields§
§join_types: Option<LateralJoinTypes>§metadata: Map<String, Value>Arbitrary data created by the dialect author.
relation: ValueImplementations§
Source§impl LateralJoinRelation
impl LateralJoinRelation
pub fn builder() -> LateralJoinRelation
Trait Implementations§
Source§impl Clone for LateralJoinRelation
impl Clone for LateralJoinRelation
Source§fn clone(&self) -> LateralJoinRelation
fn clone(&self) -> LateralJoinRelation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LateralJoinRelation
impl Debug for LateralJoinRelation
Source§impl<'de> Deserialize<'de> for LateralJoinRelation
impl<'de> Deserialize<'de> for LateralJoinRelation
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<LateralJoinRelation> for DialectSupportedRelationsItem
impl From<LateralJoinRelation> for DialectSupportedRelationsItem
Source§fn from(value: LateralJoinRelation) -> Self
fn from(value: LateralJoinRelation) -> Self
Converts to this type from the input type.
Source§impl From<LateralJoinRelation> for LateralJoinRelation
impl From<LateralJoinRelation> for LateralJoinRelation
Source§fn from(value: LateralJoinRelation) -> Self
fn from(value: LateralJoinRelation) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LateralJoinRelation
impl PartialEq for LateralJoinRelation
Source§impl Serialize for LateralJoinRelation
impl Serialize for LateralJoinRelation
impl StructuralPartialEq for LateralJoinRelation
Source§impl TryFrom<LateralJoinRelation> for LateralJoinRelation
impl TryFrom<LateralJoinRelation> for LateralJoinRelation
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: LateralJoinRelation) -> Result<Self, ConversionError>
fn try_from(value: LateralJoinRelation) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for LateralJoinRelation
impl RefUnwindSafe for LateralJoinRelation
impl Send for LateralJoinRelation
impl Sync for LateralJoinRelation
impl Unpin for LateralJoinRelation
impl UnsafeUnpin for LateralJoinRelation
impl UnwindSafe for LateralJoinRelation
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