pub enum ModuleKeyword {
    Module(Box<Keyword>),
    Macromodule(Box<Keyword>),
}Variants§
Trait Implementations§
Source§impl Clone for ModuleKeyword
 
impl Clone for ModuleKeyword
Source§fn clone(&self) -> ModuleKeyword
 
fn clone(&self) -> ModuleKeyword
Returns a duplicate 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 ModuleKeyword
 
impl Debug for ModuleKeyword
Source§impl<'a> From<&'a ModuleKeyword> for RefNode<'a>
 
impl<'a> From<&'a ModuleKeyword> for RefNode<'a>
Source§fn from(x: &'a ModuleKeyword) -> RefNode<'a>
 
fn from(x: &'a ModuleKeyword) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a ModuleKeyword> for RefNodes<'a>
 
impl<'a> From<&'a ModuleKeyword> for RefNodes<'a>
Source§fn from(x: &'a ModuleKeyword) -> RefNodes<'a>
 
fn from(x: &'a ModuleKeyword) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<ModuleKeyword> for AnyNode
 
impl From<ModuleKeyword> for AnyNode
Source§fn from(x: ModuleKeyword) -> AnyNode
 
fn from(x: ModuleKeyword) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a ModuleKeyword
 
impl<'a> IntoIterator for &'a ModuleKeyword
Source§impl PartialEq for ModuleKeyword
 
impl PartialEq for ModuleKeyword
Source§impl<'a> TryFrom<&'a ModuleKeyword> for Locate
 
impl<'a> TryFrom<&'a ModuleKeyword> for Locate
Source§impl TryFrom<AnyNode> for ModuleKeyword
 
impl TryFrom<AnyNode> for ModuleKeyword
Source§impl TryFrom<ModuleKeyword> for Locate
 
impl TryFrom<ModuleKeyword> for Locate
impl StructuralPartialEq for ModuleKeyword
Auto Trait Implementations§
impl Freeze for ModuleKeyword
impl RefUnwindSafe for ModuleKeyword
impl Send for ModuleKeyword
impl Sync for ModuleKeyword
impl Unpin for ModuleKeyword
impl UnwindSafe for ModuleKeyword
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