Enum Identity
pub enum Identity {
Unary(SeaRc<dyn Iden>),
Binary(SeaRc<dyn Iden>, SeaRc<dyn Iden>),
Ternary(SeaRc<dyn Iden>, SeaRc<dyn Iden>, SeaRc<dyn Iden>),
Many(Vec<SeaRc<dyn Iden>>),
}
Expand description
List of column identifier
Variants§
Unary(SeaRc<dyn Iden>)
Column identifier consists of 1 column
Binary(SeaRc<dyn Iden>, SeaRc<dyn Iden>)
Column identifier consists of 2 columns
Ternary(SeaRc<dyn Iden>, SeaRc<dyn Iden>, SeaRc<dyn Iden>)
Column identifier consists of 3 columns
Many(Vec<SeaRc<dyn Iden>>)
Column identifier consists of more than 3 columns
Trait Implementations§
§impl IntoIdentity for Identity
impl IntoIdentity for Identity
§fn into_identity(self) -> Identity
fn into_identity(self) -> Identity
Method to perform the conversion
§impl IntoIterator for Identity
impl IntoIterator for Identity
Auto Trait Implementations§
impl Freeze for Identity
impl !RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl !UnwindSafe for Identity
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoColumnRef for Twhere
T: 'static + IntoIden,
impl<T> IntoColumnRef for Twhere
T: 'static + IntoIden,
fn into_column_ref(self) -> ColumnRef
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more