pub struct NodeImportDeclarations {
pub import_list: Vec<WithMetaData<NodeImportedName>>,
}
Expand description
NodeImportDeclarations represents a list of import declarations in the AST
Fields§
§import_list: Vec<WithMetaData<NodeImportedName>>
Trait Implementations§
Source§impl AstVisitor for NodeImportDeclarations
impl AstVisitor for NodeImportDeclarations
fn visit( &self, emitter: &mut dyn AstConverting, ) -> Result<TraversalResult, String>
Source§impl Clone for NodeImportDeclarations
impl Clone for NodeImportDeclarations
Source§fn clone(&self) -> NodeImportDeclarations
fn clone(&self) -> NodeImportDeclarations
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 NodeImportDeclarations
impl Debug for NodeImportDeclarations
Source§impl PartialEq for NodeImportDeclarations
impl PartialEq for NodeImportDeclarations
Source§impl PartialOrd for NodeImportDeclarations
impl PartialOrd for NodeImportDeclarations
impl Eq for NodeImportDeclarations
impl StructuralPartialEq for NodeImportDeclarations
Auto Trait Implementations§
impl Freeze for NodeImportDeclarations
impl RefUnwindSafe for NodeImportDeclarations
impl Send for NodeImportDeclarations
impl Sync for NodeImportDeclarations
impl Unpin for NodeImportDeclarations
impl UnwindSafe for NodeImportDeclarations
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