pub trait InnerAccess {
    type Inner;

    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§

Returns a reference to the inner chipset.

Returns a mutable reference to the inner chipset.

Destructs self and returns the inner chipset.

Implementors§