Enum valkyrie_ast::NamespaceKind
source · pub enum NamespaceKind {
Main,
Standalone,
Test,
Hide,
}Expand description
The kind of namespace
Variants§
Main
Main namespace where definitions and imports can be shared
Standalone
Independent namespace, isolated definitions, except public and main definitions
Test
This is a test file, only available in the test environment
Hide
Temporarily remove a file
Implementations§
Trait Implementations§
source§impl Clone for NamespaceKind
impl Clone for NamespaceKind
source§fn clone(&self) -> NamespaceKind
fn clone(&self) -> NamespaceKind
Returns a copy 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 NamespaceKind
impl Debug for NamespaceKind
source§impl Hash for NamespaceKind
impl Hash for NamespaceKind
source§impl PartialEq for NamespaceKind
impl PartialEq for NamespaceKind
source§fn eq(&self, other: &NamespaceKind) -> bool
fn eq(&self, other: &NamespaceKind) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for NamespaceKind
impl Eq for NamespaceKind
impl StructuralPartialEq for NamespaceKind
Auto Trait Implementations§
impl RefUnwindSafe for NamespaceKind
impl Send for NamespaceKind
impl Sync for NamespaceKind
impl Unpin for NamespaceKind
impl UnwindSafe for NamespaceKind
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