[][src]Enum moore_vhdl::ty2::OwnedType

pub enum OwnedType<'t> {
    EnumBasetype(EnumBasetype),
    EnumSubtype(EnumSubtype<'t>),
    IntegerBasetype(IntegerBasetype),
    IntegerSubtype(IntegerSubtype<'t>),
    FloatingBasetype(FloatingBasetype),
    FloatingSubtype(FloatingSubtype<'t>),
    PhysicalBasetype(PhysicalBasetype),
    PhysicalSubtype(PhysicalSubtype<'t>),
    Access(AccessType<'t>),
    Null,
    UniversalInteger,
    UniversalReal,
}

An owned type.

Variants

EnumBasetype(EnumBasetype)
EnumSubtype(EnumSubtype<'t>)
IntegerBasetype(IntegerBasetype)
IntegerSubtype(IntegerSubtype<'t>)
FloatingBasetype(FloatingBasetype)
FloatingSubtype(FloatingSubtype<'t>)
PhysicalBasetype(PhysicalBasetype)
PhysicalSubtype(PhysicalSubtype<'t>)
Access(AccessType<'t>)
Null
UniversalInteger
UniversalReal

Trait Implementations

impl<'t> Borrow<dyn Type + 't> for OwnedType<'t>[src]

impl<'t> Clone for OwnedType<'t>[src]

impl<'t> Debug for OwnedType<'t>[src]

impl<'t> Display for OwnedType<'t>[src]

impl<'t> Eq for OwnedType<'t>[src]

impl<'t> PartialEq<OwnedType<'t>> for OwnedType<'t>[src]

impl<'t> StructuralEq for OwnedType<'t>[src]

impl<'t> StructuralPartialEq for OwnedType<'t>[src]

Auto Trait Implementations

impl<'t> !RefUnwindSafe for OwnedType<'t>[src]

impl<'t> !Send for OwnedType<'t>[src]

impl<'t> !Sync for OwnedType<'t>[src]

impl<'t> Unpin for OwnedType<'t>[src]

impl<'t> !UnwindSafe for OwnedType<'t>[src]

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> 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.