pub enum ValuesSource {
This,
Foreign {
table: String,
column: String,
},
}Expand description
Indicates the source of the column values.
Variants§
Trait Implementations§
Source§impl Clone for ValuesSource
impl Clone for ValuesSource
Source§fn clone(&self) -> ValuesSource
fn clone(&self) -> ValuesSource
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 ValuesSource
impl Debug for ValuesSource
Source§impl Hash for ValuesSource
impl Hash for ValuesSource
Source§impl PartialEq for ValuesSource
impl PartialEq for ValuesSource
impl Eq for ValuesSource
impl StructuralPartialEq for ValuesSource
Auto Trait Implementations§
impl Freeze for ValuesSource
impl RefUnwindSafe for ValuesSource
impl Send for ValuesSource
impl Sync for ValuesSource
impl Unpin for ValuesSource
impl UnwindSafe for ValuesSource
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