pub trait Concretization<T> {
// Required method
fn concretize(self) -> T;
}
Expand description
Marks a type as abstract: its values can be lowered to concrete values. This might panic.
Required Methods§
Sourcefn concretize(self) -> T
fn concretize(self) -> T
Maps an abstract value and lowers it to its concrete counterpart.