pub trait PrimitiveEnv: TypeEnv {
    // Required method
    fn get_bool(&self) -> ArcType;
}
Expand description

Trait which is a TypeEnv which also provides access to the type representation of some primitive types

Required Methods§

source

fn get_bool(&self) -> ArcType

Implementations on Foreign Types§

source§

impl<'a, T: ?Sized + PrimitiveEnv> PrimitiveEnv for &'a T

Implementors§