[][src]Enum moore_vhdl::hir::ForceMode

pub enum ForceMode {
    In,
    Out,
}

The mode of a signal force/release statement.

See IEEE 1076-2008 section 10.5.2.1.

Variants

In

Specifies an effective-value force/release. This is the default if the assignment target is a in port/signal, or no port/signal at all.

Out

Specifies a driving-value force/release. This is the default if the assignment target is a out/inout/buffer port/signal.

Trait Implementations

impl Clone for ForceMode[src]

impl Copy for ForceMode[src]

impl Debug for ForceMode[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> Pointable for T

type Init = T

The type for initializers.

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.