Struct riot_sys::vfs_mount_struct
source · #[repr(C)]pub struct vfs_mount_struct {
pub list_entry: clist_node_t,
pub fs: *const vfs_file_system_t,
pub mount_point: *const c_char,
pub mount_point_len: size_t,
pub open_files: atomic_int,
pub private_data: *mut c_void,
}
Expand description
@brief A mounted file system
Fields§
§list_entry: clist_node_t
< List entry for the _vfs_mount_list list
fs: *const vfs_file_system_t
< The file system driver for the mount point
mount_point: *const c_char
< Mount point, e.g. “/mnt/cdrom”
mount_point_len: size_t
< Length of mount_point string (set by vfs_mount)
open_files: atomic_int
< Number of currently open files and directories
private_data: *mut c_void
< File system driver private data, implementation defined
Trait Implementations§
source§impl Clone for vfs_mount_struct
impl Clone for vfs_mount_struct
source§fn clone(&self) -> vfs_mount_struct
fn clone(&self) -> vfs_mount_struct
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 moresource§impl Debug for vfs_mount_struct
impl Debug for vfs_mount_struct
source§impl Default for vfs_mount_struct
impl Default for vfs_mount_struct
impl Copy for vfs_mount_struct
Auto Trait Implementations§
impl RefUnwindSafe for vfs_mount_struct
impl !Send for vfs_mount_struct
impl !Sync for vfs_mount_struct
impl Unpin for vfs_mount_struct
impl UnwindSafe for vfs_mount_struct
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more