[][src]Enum moore_svlog_syntax::ast::PortDir

pub enum PortDir {
    Input,
    Output,
    Inout,
    Ref,
}

Variants

Input
Output
Inout
Ref

Trait Implementations

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

impl Clone for PortDir[src]

impl Copy for PortDir[src]

impl Debug for PortDir[src]

impl Display for PortDir[src]

impl Eq for PortDir[src]

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

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

impl Hash for PortDir[src]

impl PartialEq<PortDir> for PortDir[src]

impl StructuralEq for PortDir[src]

impl StructuralPartialEq for PortDir[src]

impl<'a> WalkVisitor<'a> for PortDir[src]

fn walk(&'a self, visitor: &mut dyn Visitor<'a>)[src]

Walk a visitor over self.

Calling this function is equivalent to calling:

  • visitor.pre_visit_port_dir(self)
  • self.accept(visitor)
  • visitor.post_visit_port_dir(self);

Auto Trait Implementations

impl RefUnwindSafe for PortDir

impl Send for PortDir

impl Sync for PortDir

impl Unpin for PortDir

impl UnwindSafe for PortDir

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> ToString for T where
    T: Display + ?Sized
[src]

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.