pub trait ReadableOptionExt<T>: Readable<Target = Option<T>> {
// Provided methods
fn unwrap(&self) -> T
where T: Clone + 'static { ... }
fn as_ref(&self) -> Option<<Self::Storage as AnyStorage>::Ref<'_, T>>
where T: 'static { ... }
}Available on crate feature
prelude only.Expand description
An extension trait for Readable<Option<T>> that provides some convenience methods.