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