[][src]Struct moore_svlog_syntax::ast::ImportItemData

pub struct ImportItemData {
    pub pkg: Spanned<Name>,
    pub name: Option<Spanned<Name>>,
}

A single import.

For example the a::b in import a::b, c::*.

Fields

pkg: Spanned<Name>name: Option<Spanned<Name>>

Trait Implementations

impl<'a> AcceptVisitor<'a> for ImportItemData[src]

impl AnyNodeData for ImportItemData[src]

impl Clone for ImportItemData[src]

impl Debug for ImportItemData[src]

impl Eq for ImportItemData[src]

impl<'a> ForEachChild<'a> for ImportItemData[src]

impl<'a> ForEachNode<'a> for ImportItemData[src]

impl PartialEq<ImportItemData> for ImportItemData[src]

impl StructuralEq for ImportItemData[src]

impl StructuralPartialEq for ImportItemData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.