pub struct LockFile {
pub schema: u32,
pub uuid: String,
pub name: String,
pub pid: u32,
pub ppid: u32,
pub started_at: String,
pub binary_version: String,
pub transports: LockTransports,
pub card_digest: String,
pub capabilities: Vec<String>,
}Fields§
§schema: u32§uuid: String§name: String§pid: u32§ppid: u32§started_at: String§binary_version: String§transports: LockTransports§card_digest: String§capabilities: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LockFile
impl<'de> Deserialize<'de> for LockFile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for LockFile
Auto Trait Implementations§
impl Freeze for LockFile
impl RefUnwindSafe for LockFile
impl Send for LockFile
impl Sync for LockFile
impl Unpin for LockFile
impl UnsafeUnpin for LockFile
impl UnwindSafe for LockFile
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