[][src]Enum moore_svlog::typeck::TypeContext

pub enum TypeContext<'a> {
    Type(Type<'a>),
    Bool,
}

A type context imposed by a node's surroundings.

This is used to treat things such as assignment-like contexts.

Variants

Type(Type<'a>)

The surroundings impose a regular type.

Bool

The surroundings ask for implicit boolean mapping (not truncation).

Methods

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

pub fn ty(&self) -> Type<'a>[src]

Convert the type context to an actual type.

This resolves implicit boolean casts to the bit type.

Trait Implementations

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

impl<'a> Copy for TypeContext<'a>[src]

impl<'a> Debug for TypeContext<'a>[src]

impl<'a> Eq for TypeContext<'a>[src]

impl<'a> From<&'a TypeKind<'a>> for TypeContext<'a>[src]

impl<'a> Hash for TypeContext<'a>[src]

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

impl<'a> StructuralEq for TypeContext<'a>[src]

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for TypeContext<'a>

impl<'a> Send for TypeContext<'a>

impl<'a> Sync for TypeContext<'a>

impl<'a> Unpin for TypeContext<'a>

impl<'a> UnwindSafe for TypeContext<'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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

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