[][src]Struct littlefs2_sys::lfs

#[repr(C)]pub struct lfs {
    pub rcache: lfs_cache_t,
    pub pcache: lfs_cache_t,
    pub root: [lfs_block_t; 2],
    pub mlist: *mut lfs_lfs_mlist,
    pub seed: u32,
    pub gstate: lfs_gstate_t,
    pub gdisk: lfs_gstate_t,
    pub gdelta: lfs_gstate_t,
    pub free: lfs_lfs_free,
    pub cfg: *const lfs_config,
    pub name_max: lfs_size_t,
    pub file_max: lfs_size_t,
    pub attr_max: lfs_size_t,
}

Fields

rcache: lfs_cache_tpcache: lfs_cache_troot: [lfs_block_t; 2]mlist: *mut lfs_lfs_mlistseed: u32gstate: lfs_gstate_tgdisk: lfs_gstate_tgdelta: lfs_gstate_tfree: lfs_lfs_freecfg: *const lfs_configname_max: lfs_size_tfile_max: lfs_size_tattr_max: lfs_size_t

Trait Implementations

impl Clone for lfs[src]

impl Copy for lfs[src]

impl Debug for lfs[src]

Auto Trait Implementations

impl !Send for lfs

impl !Sync for lfs

impl Unpin for lfs

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.