pub enum ShadowTableKind {
Ordinary,
Shadow,
}Expand description
Classification for a schema object named by a virtual-table module.
Variants§
Ordinary
The name is not a module-owned shadow table.
Shadow
The name is a module-owned shadow table.
Trait Implementations§
Source§impl Clone for ShadowTableKind
impl Clone for ShadowTableKind
Source§fn clone(&self) -> ShadowTableKind
fn clone(&self) -> ShadowTableKind
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 ShadowTableKind
impl Debug for ShadowTableKind
Source§impl Default for ShadowTableKind
impl Default for ShadowTableKind
Source§fn default() -> ShadowTableKind
fn default() -> ShadowTableKind
Returns the “default value” for a type. Read more
Source§impl PartialEq for ShadowTableKind
impl PartialEq for ShadowTableKind
Source§fn eq(&self, other: &ShadowTableKind) -> bool
fn eq(&self, other: &ShadowTableKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ShadowTableKind
impl Eq for ShadowTableKind
impl StructuralPartialEq for ShadowTableKind
Auto Trait Implementations§
impl Freeze for ShadowTableKind
impl RefUnwindSafe for ShadowTableKind
impl Send for ShadowTableKind
impl Sync for ShadowTableKind
impl Unpin for ShadowTableKind
impl UnsafeUnpin for ShadowTableKind
impl UnwindSafe for ShadowTableKind
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