#[repr(i32)]pub enum SubLinkType {
Undefined = 0,
ExistsSublink = 1,
AllSublink = 2,
AnySublink = 3,
RowcompareSublink = 4,
ExprSublink = 5,
MultiexprSublink = 6,
ArraySublink = 7,
CteSublink = 8,
}
Variants§
Undefined = 0
ExistsSublink = 1
AllSublink = 2
AnySublink = 3
RowcompareSublink = 4
ExprSublink = 5
MultiexprSublink = 6
ArraySublink = 7
CteSublink = 8
Implementations§
Trait Implementations§
Source§impl Clone for SubLinkType
impl Clone for SubLinkType
Source§fn clone(&self) -> SubLinkType
fn clone(&self) -> SubLinkType
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 SubLinkType
impl Debug for SubLinkType
Source§impl Default for SubLinkType
impl Default for SubLinkType
Source§fn default() -> SubLinkType
fn default() -> SubLinkType
Returns the “default value” for a type. Read more
Source§impl From<SubLinkType> for i32
impl From<SubLinkType> for i32
Source§fn from(value: SubLinkType) -> i32
fn from(value: SubLinkType) -> i32
Converts to this type from the input type.
Source§impl Hash for SubLinkType
impl Hash for SubLinkType
Source§impl Ord for SubLinkType
impl Ord for SubLinkType
Source§fn cmp(&self, other: &SubLinkType) -> Ordering
fn cmp(&self, other: &SubLinkType) -> 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 SubLinkType
impl PartialEq for SubLinkType
Source§impl PartialOrd for SubLinkType
impl PartialOrd for SubLinkType
impl Copy for SubLinkType
impl Eq for SubLinkType
impl StructuralPartialEq for SubLinkType
Auto Trait Implementations§
impl Freeze for SubLinkType
impl RefUnwindSafe for SubLinkType
impl Send for SubLinkType
impl Sync for SubLinkType
impl Unpin for SubLinkType
impl UnwindSafe for SubLinkType
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