#[repr(C)]pub struct r_fs_file_t {
pub name: *mut c_char,
pub path: *mut c_char,
pub off: c_ulonglong,
pub size: c_uint,
pub data: *mut c_uchar,
pub ctx: *mut c_void,
pub type_: c_char,
pub time: c_ulonglong,
pub p: *mut r_fs_plugin_t,
pub root: *mut r_fs_root_t,
pub ptr: *mut c_void,
}
Fields§
§name: *mut c_char
§path: *mut c_char
§off: c_ulonglong
§size: c_uint
§data: *mut c_uchar
§ctx: *mut c_void
§type_: c_char
§time: c_ulonglong
§p: *mut r_fs_plugin_t
§root: *mut r_fs_root_t
§ptr: *mut c_void
Trait Implementations§
Source§impl Clone for r_fs_file_t
impl Clone for r_fs_file_t
Source§fn clone(&self) -> r_fs_file_t
fn clone(&self) -> r_fs_file_t
Returns a duplicate 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 r_fs_file_t
impl Debug for r_fs_file_t
impl Copy for r_fs_file_t
Auto Trait Implementations§
impl Freeze for r_fs_file_t
impl RefUnwindSafe for r_fs_file_t
impl !Send for r_fs_file_t
impl !Sync for r_fs_file_t
impl Unpin for r_fs_file_t
impl UnwindSafe for r_fs_file_t
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