pub struct FileLockParam {
pub fh: u64,
pub lock_owner: u64,
pub start: u64,
pub end: u64,
pub typ: u32,
pub pid: u32,
}Expand description
POSIX file lock parameters
Fields§
§fh: u64File handler
lock_owner: u64Lock owner
start: u64Start offset
end: u64End offset
typ: u32Lock type
pid: u32The process ID of the lock
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileLockParam
impl RefUnwindSafe for FileLockParam
impl Send for FileLockParam
impl Sync for FileLockParam
impl Unpin for FileLockParam
impl UnwindSafe for FileLockParam
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