pub trait UnwrapInner {
type Inner;
// Required method
fn unwrap_inner(self) -> Self::Inner;
}Expand description
trait for unwrapping nested wrapped values
Required Associated Types§
Required Methods§
Sourcefn unwrap_inner(self) -> Self::Inner
fn unwrap_inner(self) -> Self::Inner
unwraps the inner value