Traits
- ! Extension traits for unwrapping arbitrary levels of nesting in
Result
s andOption
s. Trait for types that may be flattened into aT
. This trait is implemented for all types, but note that due to Rust compiler limitations, it requires a wildcard generic typePathToTarget
that the compiler will infer for you. - ! Extension traits for unwrapping arbitrary levels of nesting in
Result
s andOption
s. Trait for types that may be flattened into aResult<T, E>
. This trait is implemented for all types, but note that due to Rust compiler limitations, it requires a wildcard generic typePathToTarget
that the compiler will infer for you. - ! Extension traits for unwrapping arbitrary levels of nesting in
Result
s andOption
s. Trait for types that may be unwrapped into aT
, using the default value if necessary. This trait is implemented for all types, but note that due to Rust compiler limitations, it requires a wildcard generic typePathToTarget
that the compiler will infer for you.