pub enum SchemaObjectKind {
Table,
Index,
Trigger,
View,
}Expand description
SQLite catalog object kind owned by a schema domain.
Variants§
Trait Implementations§
Source§impl Clone for SchemaObjectKind
impl Clone for SchemaObjectKind
Source§fn clone(&self) -> SchemaObjectKind
fn clone(&self) -> SchemaObjectKind
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 moreimpl Copy for SchemaObjectKind
Source§impl Debug for SchemaObjectKind
impl Debug for SchemaObjectKind
impl Eq for SchemaObjectKind
Source§impl PartialEq for SchemaObjectKind
impl PartialEq for SchemaObjectKind
impl StructuralPartialEq for SchemaObjectKind
Auto Trait Implementations§
impl Freeze for SchemaObjectKind
impl RefUnwindSafe for SchemaObjectKind
impl Send for SchemaObjectKind
impl Sync for SchemaObjectKind
impl Unpin for SchemaObjectKind
impl UnsafeUnpin for SchemaObjectKind
impl UnwindSafe for SchemaObjectKind
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