Skip to main content

esp_vfs_fs_ops_t

Struct esp_vfs_fs_ops_t 

Source
#[repr(C)]
pub struct esp_vfs_fs_ops_t {
Show 14 fields pub __bindgen_anon_1: esp_vfs_fs_ops_t__bindgen_ty_1, pub __bindgen_anon_2: esp_vfs_fs_ops_t__bindgen_ty_2, pub __bindgen_anon_3: esp_vfs_fs_ops_t__bindgen_ty_3, pub __bindgen_anon_4: esp_vfs_fs_ops_t__bindgen_ty_4, pub __bindgen_anon_5: esp_vfs_fs_ops_t__bindgen_ty_5, pub __bindgen_anon_6: esp_vfs_fs_ops_t__bindgen_ty_6, pub __bindgen_anon_7: esp_vfs_fs_ops_t__bindgen_ty_7, pub __bindgen_anon_8: esp_vfs_fs_ops_t__bindgen_ty_8, pub __bindgen_anon_9: esp_vfs_fs_ops_t__bindgen_ty_9, pub __bindgen_anon_10: esp_vfs_fs_ops_t__bindgen_ty_10, pub __bindgen_anon_11: esp_vfs_fs_ops_t__bindgen_ty_11, pub dir: *const esp_vfs_dir_ops_t, pub termios: *const esp_vfs_termios_ops_t, pub select: *const esp_vfs_select_ops_t,
}
Expand description

@brief Main struct of the minified vfs API, containing basic function pointers as well as pointers to the other subcomponents.

Fields§

§__bindgen_anon_1: esp_vfs_fs_ops_t__bindgen_ty_1§__bindgen_anon_2: esp_vfs_fs_ops_t__bindgen_ty_2§__bindgen_anon_3: esp_vfs_fs_ops_t__bindgen_ty_3§__bindgen_anon_4: esp_vfs_fs_ops_t__bindgen_ty_4§__bindgen_anon_5: esp_vfs_fs_ops_t__bindgen_ty_5§__bindgen_anon_6: esp_vfs_fs_ops_t__bindgen_ty_6§__bindgen_anon_7: esp_vfs_fs_ops_t__bindgen_ty_7§__bindgen_anon_8: esp_vfs_fs_ops_t__bindgen_ty_8§__bindgen_anon_9: esp_vfs_fs_ops_t__bindgen_ty_9§__bindgen_anon_10: esp_vfs_fs_ops_t__bindgen_ty_10§__bindgen_anon_11: esp_vfs_fs_ops_t__bindgen_ty_11§dir: *const esp_vfs_dir_ops_t

< pointer to the dir subcomponent

§termios: *const esp_vfs_termios_ops_t

< pointer to the termios subcomponent

§select: *const esp_vfs_select_ops_t

< pointer to the select subcomponent

Trait Implementations§

Source§

impl Clone for esp_vfs_fs_ops_t

Source§

fn clone(&self) -> esp_vfs_fs_ops_t

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for esp_vfs_fs_ops_t

Source§

fn default() -> esp_vfs_fs_ops_t

Returns the “default value” for a type. Read more
Source§

impl Copy for esp_vfs_fs_ops_t

Auto Trait Implementations§

§

impl Freeze for esp_vfs_fs_ops_t

§

impl RefUnwindSafe for esp_vfs_fs_ops_t

§

impl !Send for esp_vfs_fs_ops_t

§

impl !Sync for esp_vfs_fs_ops_t

§

impl Unpin for esp_vfs_fs_ops_t

§

impl UnsafeUnpin for esp_vfs_fs_ops_t

§

impl UnwindSafe for esp_vfs_fs_ops_t

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.