Struct riot_sys::vfs_file_system_t
source · #[repr(C)]pub struct vfs_file_system_t {
pub f_op: *const vfs_file_ops_t,
pub d_op: *const vfs_dir_ops_t,
pub fs_op: *const vfs_file_system_ops_t,
}
Expand description
@brief A file system driver
Fields§
§f_op: *const vfs_file_ops_t
< File operations table
d_op: *const vfs_dir_ops_t
< Directory operations table
fs_op: *const vfs_file_system_ops_t
< File system operations table
Trait Implementations§
source§impl Clone for vfs_file_system_t
impl Clone for vfs_file_system_t
source§fn clone(&self) -> vfs_file_system_t
fn clone(&self) -> vfs_file_system_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more