[][src]Trait spectrusty_core::chip::InnerAccess

pub trait InnerAccess {
    type Inner;
    pub fn inner_ref(&self) -> &Self::Inner;
pub fn inner_mut(&mut self) -> &mut Self::Inner;
pub fn into_inner(self) -> Self::Inner; }

A generic trait, useful for chipset implementations based on other underlying implementations.

Associated Types

Loading content...

Required methods

pub fn inner_ref(&self) -> &Self::Inner[src]

Returns a reference to the inner chipset.

pub fn inner_mut(&mut self) -> &mut Self::Inner[src]

Returns a mutable reference to the inner chipset.

pub fn into_inner(self) -> Self::Inner[src]

Destructs self and returns the inner chipset.

Loading content...

Implementors

Loading content...