pub trait Frozen<S> {
    fn thaw(&self) -> S;
}
Expand description

A frozen value that may be thawed.

Required Methods

Thaws this value.

Implementors