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