Enum leo_asg::type_::Type[][src]

pub enum Type<'a> {
    Address,
    Boolean,
    Field,
    Group,
    Integer(IntegerType),
    Array(Box<Type<'a>>, usize),
    Tuple(Vec<Type<'a>>),
    Circuit(&'a Circuit<'a>),
}

A type in an asg.

Variants

Address
Boolean
Field
Group
Integer(IntegerType)
Array(Box<Type<'a>>, usize)
Tuple(Vec<Type<'a>>)
Circuit(&'a Circuit<'a>)

Implementations

impl<'a> Type<'a>[src]

pub fn is_assignable_from(&self, from: &Type<'a>) -> bool[src]

pub fn partial(self) -> PartialType<'a>[src]

pub fn is_unit(&self) -> bool[src]

pub fn can_cast_to(&self, to: &Type<'a>) -> bool[src]

Trait Implementations

impl<'a> Clone for Type<'a>[src]

impl<'a> Display for Type<'a>[src]

impl<'a> Into<PartialType<'a>> for Type<'a>[src]

impl<'a> Into<Type> for &Type<'a>[src]

impl<'a> PartialEq<Type<'a>> for Type<'a>[src]

impl<'a> StructuralPartialEq for Type<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Type<'a>

impl<'a> !Send for Type<'a>

impl<'a> !Sync for Type<'a>

impl<'a> Unpin for Type<'a>

impl<'a> !UnwindSafe for Type<'a>

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