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