pub trait DataUnwrap<T> {
// Required method
fn data_unwrap(self) -> Result<T, Error>;
}
Expand description
Trait that unwraps data or propagates the error.
pub trait DataUnwrap<T> {
// Required method
fn data_unwrap(self) -> Result<T, Error>;
}
Trait that unwraps data or propagates the error.