pub enum TableReferenceAccess {
Read,
Write,
Create,
Drop,
Metadata,
}Expand description
Access class for a table reference.
Variants§
Read
Read-only scan/reference.
Write
Data mutation against an existing table.
Create
Table creation.
Drop
Table drop/removal.
Metadata
Metadata operation related to a table, such as CREATE INDEX.
Trait Implementations§
Source§impl Clone for TableReferenceAccess
impl Clone for TableReferenceAccess
Source§fn clone(&self) -> TableReferenceAccess
fn clone(&self) -> TableReferenceAccess
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 TableReferenceAccess
Source§impl Debug for TableReferenceAccess
impl Debug for TableReferenceAccess
impl Eq for TableReferenceAccess
Source§impl PartialEq for TableReferenceAccess
impl PartialEq for TableReferenceAccess
impl StructuralPartialEq for TableReferenceAccess
Auto Trait Implementations§
impl Freeze for TableReferenceAccess
impl RefUnwindSafe for TableReferenceAccess
impl Send for TableReferenceAccess
impl Sync for TableReferenceAccess
impl Unpin for TableReferenceAccess
impl UnsafeUnpin for TableReferenceAccess
impl UnwindSafe for TableReferenceAccess
Blanket Implementations§
impl<T> Allocation for T
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