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