#[repr(i32)]pub enum JoinType {
Show 13 variants
Unspecified = 0,
Inner = 1,
Outer = 2,
Left = 3,
Right = 4,
LeftSemi = 5,
RightSemi = 6,
LeftAnti = 7,
RightAnti = 8,
LeftSingle = 9,
RightSingle = 10,
LeftMark = 11,
RightMark = 12,
}
Variants§
Unspecified = 0
Inner = 1
Outer = 2
Left = 3
Right = 4
LeftSemi = 5
RightSemi = 6
LeftAnti = 7
RightAnti = 8
LeftSingle = 9
RightSingle = 10
LeftMark = 11
RightMark = 12
Implementations§
Source§impl JoinType
impl JoinType
Sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Ord for JoinType
impl Ord for JoinType
Source§impl PartialOrd for JoinType
impl PartialOrd for JoinType
impl Copy for JoinType
impl Eq for JoinType
impl StructuralPartialEq for JoinType
Auto Trait Implementations§
impl Freeze for JoinType
impl RefUnwindSafe for JoinType
impl Send for JoinType
impl Sync for JoinType
impl Unpin for JoinType
impl UnwindSafe for JoinType
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