pub enum JoinTypesItem {
Inner,
Outer,
Left,
Right,
LeftSemi,
RightSemi,
LeftAnti,
RightAnti,
LeftSingle,
RightSingle,
LeftMark,
RightMark,
}
Expand description
JoinTypesItem
JSON schema
{
"enum": [
"INNER",
"OUTER",
"LEFT",
"RIGHT",
"LEFT_SEMI",
"RIGHT_SEMI",
"LEFT_ANTI",
"RIGHT_ANTI",
"LEFT_SINGLE",
"RIGHT_SINGLE",
"LEFT_MARK",
"RIGHT_MARK"
]
}
Variants§
Inner
Outer
Left
Right
LeftSemi
RightSemi
LeftAnti
RightAnti
LeftSingle
RightSingle
LeftMark
RightMark
Trait Implementations§
Source§impl Clone for JoinTypesItem
impl Clone for JoinTypesItem
Source§fn clone(&self) -> JoinTypesItem
fn clone(&self) -> JoinTypesItem
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 JoinTypesItem
impl Debug for JoinTypesItem
Source§impl<'de> Deserialize<'de> for JoinTypesItem
impl<'de> Deserialize<'de> for JoinTypesItem
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 Display for JoinTypesItem
impl Display for JoinTypesItem
Source§impl From<&JoinTypesItem> for JoinTypesItem
impl From<&JoinTypesItem> for JoinTypesItem
Source§fn from(value: &JoinTypesItem) -> Self
fn from(value: &JoinTypesItem) -> Self
Converts to this type from the input type.
Source§impl FromStr for JoinTypesItem
impl FromStr for JoinTypesItem
Source§impl Hash for JoinTypesItem
impl Hash for JoinTypesItem
Source§impl Ord for JoinTypesItem
impl Ord for JoinTypesItem
Source§fn cmp(&self, other: &JoinTypesItem) -> Ordering
fn cmp(&self, other: &JoinTypesItem) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JoinTypesItem
impl PartialEq for JoinTypesItem
Source§impl PartialOrd for JoinTypesItem
impl PartialOrd for JoinTypesItem
Source§impl Serialize for JoinTypesItem
impl Serialize for JoinTypesItem
Source§impl TryFrom<&String> for JoinTypesItem
impl TryFrom<&String> for JoinTypesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for JoinTypesItem
impl TryFrom<&str> for JoinTypesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for JoinTypesItem
impl TryFrom<String> for JoinTypesItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for JoinTypesItem
impl Eq for JoinTypesItem
impl StructuralPartialEq for JoinTypesItem
Auto Trait Implementations§
impl Freeze for JoinTypesItem
impl RefUnwindSafe for JoinTypesItem
impl Send for JoinTypesItem
impl Sync for JoinTypesItem
impl Unpin for JoinTypesItem
impl UnwindSafe for JoinTypesItem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.