pub trait Wrapper<Inner> {
// Required method
fn into_inner(self) -> Inner;
}Expand description
A type that wraps a value of type Inner that can be retrieved via into_inner.
Required Methods§
Sourcefn into_inner(self) -> Inner
fn into_inner(self) -> Inner
Retrieve ownership of the wrapped value.