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
sourceimpl Clone for LibraryDescription
impl Clone for LibraryDescription
sourcefn clone(&self) -> LibraryDescription
fn clone(&self) -> LibraryDescription
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LibraryDescription
impl Debug for LibraryDescription
sourceimpl<'a> From<&'a LibraryDescription> for RefNodes<'a>
impl<'a> From<&'a LibraryDescription> for RefNodes<'a>
sourcefn from(x: &'a LibraryDescription) -> Self
fn from(x: &'a LibraryDescription) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a LibraryDescription> for RefNode<'a>
impl<'a> From<&'a LibraryDescription> for RefNode<'a>
sourcefn from(x: &'a LibraryDescription) -> Self
fn from(x: &'a LibraryDescription) -> Self
Converts to this type from the input type.
sourceimpl From<LibraryDescription> for AnyNode
impl From<LibraryDescription> for AnyNode
sourcefn from(x: LibraryDescription) -> Self
fn from(x: LibraryDescription) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a LibraryDescription
impl<'a> IntoIterator for &'a LibraryDescription
sourceimpl PartialEq<LibraryDescription> for LibraryDescription
impl PartialEq<LibraryDescription> for LibraryDescription
sourcefn eq(&self, other: &LibraryDescription) -> bool
fn eq(&self, other: &LibraryDescription) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LibraryDescription) -> bool
fn ne(&self, other: &LibraryDescription) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a LibraryDescription> for Locate
impl<'a> TryFrom<&'a LibraryDescription> for Locate
sourceimpl TryFrom<AnyNode> for LibraryDescription
impl TryFrom<AnyNode> for LibraryDescription
sourceimpl TryFrom<LibraryDescription> for Locate
impl TryFrom<LibraryDescription> for Locate
impl StructuralPartialEq for LibraryDescription
Auto Trait Implementations
impl RefUnwindSafe for LibraryDescription
impl Send for LibraryDescription
impl Sync for LibraryDescription
impl Unpin for LibraryDescription
impl UnwindSafe for LibraryDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more