#[repr(C)]pub struct fuse_file_lock {
pub start: u64,
pub end: u64,
pub type_: u32,
pub pid: u32,
}
Fields§
§start: u64
§end: u64
§type_: u32
§pid: u32
Trait Implementations§
Source§impl Clone for fuse_file_lock
impl Clone for fuse_file_lock
Source§fn clone(&self) -> fuse_file_lock
fn clone(&self) -> fuse_file_lock
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for fuse_file_lock
impl Debug for fuse_file_lock
Source§impl Default for fuse_file_lock
impl Default for fuse_file_lock
Source§fn default() -> fuse_file_lock
fn default() -> fuse_file_lock
Returns the “default value” for a type. Read more
Source§impl Hash for fuse_file_lock
impl Hash for fuse_file_lock
Source§impl PartialEq for fuse_file_lock
impl PartialEq for fuse_file_lock
impl Copy for fuse_file_lock
impl Eq for fuse_file_lock
impl StructuralPartialEq for fuse_file_lock
Auto Trait Implementations§
impl Freeze for fuse_file_lock
impl RefUnwindSafe for fuse_file_lock
impl Send for fuse_file_lock
impl Sync for fuse_file_lock
impl Unpin for fuse_file_lock
impl UnwindSafe for fuse_file_lock
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