Trait enso_prelude::KnownTypeValue[][src]

pub trait KnownTypeValue {
    type Value;
    fn value() -> Self::Value;
}
Expand description

Defines relation between types and values, like between True and true.

Associated Types

The value-level counterpart of this type-value.

Required methods

The value of this type-value.

Implementors