pub trait InnerAccess {
type Inner;
// Required methods
fn inner_ref(&self) -> &Self::Inner;
fn inner_mut(&mut self) -> &mut Self::Inner;
fn into_inner(self) -> Self::Inner;
}Expand description
A generic trait, useful for chipset implementations based on other underlying implementations.
Required Associated Types§
Required Methods§
Sourcefn into_inner(self) -> Self::Inner
fn into_inner(self) -> Self::Inner
Destructs self and returns the inner chipset.