Enum vhdl_lang::ast::AssignmentRightHand[][src]

pub enum AssignmentRightHand<T> {
    Simple(T),
    Conditional(Conditionals<T>),
    Selected(Selection<T>),
}

LRM 10.5 Signal assignment statement LRM 10.6 Variable assignment statement

Variants

Simple(T)
Conditional(Conditionals<T>)
Selected(Selection<T>)

Trait Implementations

impl<T: Clone> Clone for AssignmentRightHand<T>[src]

impl<T: Debug> Debug for AssignmentRightHand<T>[src]

impl<T: PartialEq> PartialEq<AssignmentRightHand<T>> for AssignmentRightHand<T>[src]

impl<T> StructuralPartialEq for AssignmentRightHand<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for AssignmentRightHand<T>

impl<T> Send for AssignmentRightHand<T> where
    T: Send

impl<T> Sync for AssignmentRightHand<T> where
    T: Sync

impl<T> Unpin for AssignmentRightHand<T> where
    T: Unpin

impl<T> !UnwindSafe for AssignmentRightHand<T>

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.