Trait Types

Source
pub trait Types {
    type Sort: Identifier + Hash + Clone;
    type KVar: Identifier + Hash;
    type Var: Identifier + Hash;
    type Decimal: FixpointFmt + Hash;
    type String: FixpointFmt + Hash;
    type Tag: Display + FromStr + Hash;
}

Required Associated Types§

Implementors§

Source§

impl Types for DefaultTypes

Source§

type Sort = &'static str

Source§

type KVar = &'static str

Source§

type Var = &'static str

Source§

type Tag = String

Source§

type Decimal = u32

Source§

type String = String