pub enum SequenceOwnedBy {
None,
Column {
table: String,
column: String,
},
}Expand description
v7.17.0 — OWNED BY {table.col | NONE}.
Variants§
Trait Implementations§
Source§impl Clone for SequenceOwnedBy
impl Clone for SequenceOwnedBy
Source§fn clone(&self) -> SequenceOwnedBy
fn clone(&self) -> SequenceOwnedBy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SequenceOwnedBy
impl Debug for SequenceOwnedBy
impl Eq for SequenceOwnedBy
Source§impl PartialEq for SequenceOwnedBy
impl PartialEq for SequenceOwnedBy
Source§fn eq(&self, other: &SequenceOwnedBy) -> bool
fn eq(&self, other: &SequenceOwnedBy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SequenceOwnedBy
Auto Trait Implementations§
impl Freeze for SequenceOwnedBy
impl RefUnwindSafe for SequenceOwnedBy
impl Send for SequenceOwnedBy
impl Sync for SequenceOwnedBy
impl Unpin for SequenceOwnedBy
impl UnsafeUnpin for SequenceOwnedBy
impl UnwindSafe for SequenceOwnedBy
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