Trait munge::Destructure
source · [−]pub unsafe trait Destructure: Sized {
type Underlying: ?Sized;
type Destructuring: Destructuring;
fn underlying(&mut self) -> *mut Self::Underlying;
}
Expand description
A type that can be destructured into its constituent parts.
Safety
Destructuring
must reflect the type of restructuring allowed for the type:underlying
must return a pointer that is non-null, properly aligned, and valid for reads.
Required Associated Types
sourcetype Underlying: ?Sized
type Underlying: ?Sized
The underlying type that is destructured.
sourcetype Destructuring: Destructuring
type Destructuring: Destructuring
The type of destructuring to perform.
Required Methods
sourcefn underlying(&mut self) -> *mut Self::Underlying
fn underlying(&mut self) -> *mut Self::Underlying
Returns a mutable pointer to the underlying type.