Trait sindra::ty::FindType [] [src]

pub trait FindType: Value {
    type Output: Type;
    fn ty(&self) -> Self::Output;
}

Finds the Type for an object implementing the Value trait.

Associated Types

The type that implements the Type trait associated with this value.

Required Methods

Discovers the type of this value.

Implementors