[][src]Struct moore_vhdl::ty::ArrayTy

pub struct ArrayTy {
    pub indices: Vec<ArrayIndex>,
    pub element: Box<Ty>,
}

An array type.

Fields

indices: Vec<ArrayIndex>

The index types of the array, at least one.

element: Box<Ty>

The type of the array element.

Implementations

impl ArrayTy[src]

pub fn new(indices: Vec<ArrayIndex>, element: Box<Ty>) -> ArrayTy[src]

Create a new array type.

Trait Implementations

impl Clone for ArrayTy[src]

impl Debug for ArrayTy[src]

impl Display for ArrayTy[src]

impl Eq for ArrayTy[src]

impl From<ArrayTy> for Ty[src]

impl PartialEq<ArrayTy> for ArrayTy[src]

impl StructuralEq for ArrayTy[src]

impl StructuralPartialEq for ArrayTy[src]

Auto Trait Implementations

impl RefUnwindSafe for ArrayTy

impl Send for ArrayTy

impl Sync for ArrayTy

impl Unpin for ArrayTy

impl UnwindSafe for ArrayTy

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.