#[repr(C)]pub struct FuseFileLock {
pub start: u64,
pub end: u64,
pub typ: u32,
pub pid: u32,
}Expand description
FUSE file lock fuse_file_lock
Fields§
§start: u64The starting offset of the lock
end: u64The ending offset of the lock
typ: u32The type of the lock
pid: u32The process ID of the lock, tgid
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuseFileLock
impl RefUnwindSafe for FuseFileLock
impl Send for FuseFileLock
impl Sync for FuseFileLock
impl Unpin for FuseFileLock
impl UnwindSafe for FuseFileLock
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