pub struct LockInfo {
pub version: String,
pub pid: u32,
pub is_process_running: bool,
pub exec_path: String,
pub acquired_at: SystemTime,
pub lock_file_path: String,
}Fields§
§version: String§pid: u32§is_process_running: bool§exec_path: String§acquired_at: SystemTime§lock_file_path: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for LockInfo
impl RefUnwindSafe for LockInfo
impl Send for LockInfo
impl Sync for LockInfo
impl Unpin for LockInfo
impl UnsafeUnpin for LockInfo
impl UnwindSafe for LockInfo
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