pub type ReadOption<T> = Option<Read<T>>;
Expand description

Same as Read, but will return None rather than being fatal

Aliased Type§

enum ReadOption<T> {
    None,
    Some(Read<T>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Read<T>)

Some value of type T.