pub trait Repr {
    type Value;

    fn extract(&self) -> Self::Value;
}
Expand description

Similar to From<&U> for T

Required Associated Types

The value that this struct encodes

Required Methods

extract the contained value

Implementors