Enum isla_lib::ir::Ty[][src]

pub enum Ty<A> {
    I64,
    I128,
    AnyBits,
    Bits(u32),
    Unit,
    Bool,
    Bit,
    String,
    Real,
    Enum(A),
    Struct(A),
    Union(A),
    Vector(Box<Ty<A>>),
    FixedVector(u32Box<Ty<A>>),
    List(Box<Ty<A>>),
    Ref(Box<Ty<A>>),
}

Variants

I64
I128
AnyBits
Bits(u32)
Unit
Bool
Bit
String
Real
Enum(A)
Struct(A)
Union(A)
Vector(Box<Ty<A>>)
FixedVector(u32Box<Ty<A>>)
List(Box<Ty<A>>)
Ref(Box<Ty<A>>)

Trait Implementations

impl<A: Clone> Clone for Ty<A>[src]

impl<A: Debug> Debug for Ty<A>[src]

impl<'de, A> Deserialize<'de> for Ty<A> where
    A: Deserialize<'de>, 
[src]

impl<A> Serialize for Ty<A> where
    A: Serialize
[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for Ty<A> where
    A: RefUnwindSafe

impl<A> Send for Ty<A> where
    A: Send

impl<A> Sync for Ty<A> where
    A: Sync

impl<A> Unpin for Ty<A> where
    A: Unpin

impl<A> UnwindSafe for Ty<A> where
    A: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.