pub enum ImportBinding {
Namespace(IdentifierNode),
Named(Vec<ImportSpecifierNode>),
}Variants§
Namespace(IdentifierNode)
Named(Vec<ImportSpecifierNode>)
Trait Implementations§
Source§impl Clone for ImportBinding
impl Clone for ImportBinding
Source§fn clone(&self) -> ImportBinding
fn clone(&self) -> ImportBinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ImportBinding
impl Debug for ImportBinding
impl Eq for ImportBinding
Source§impl PartialEq for ImportBinding
impl PartialEq for ImportBinding
impl StructuralPartialEq for ImportBinding
Auto Trait Implementations§
impl Freeze for ImportBinding
impl RefUnwindSafe for ImportBinding
impl Send for ImportBinding
impl Sync for ImportBinding
impl Unpin for ImportBinding
impl UnsafeUnpin for ImportBinding
impl UnwindSafe for ImportBinding
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