pub struct PidFile {
pub pid: u32,
pub version: String,
pub schema_version: String,
pub started_at: String,
}Expand description
PID file content structure
Fields§
§pid: u32§version: String§schema_version: String§started_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for PidFile
impl<'de> Deserialize<'de> for PidFile
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
Auto Trait Implementations§
impl Freeze for PidFile
impl RefUnwindSafe for PidFile
impl Send for PidFile
impl Sync for PidFile
impl Unpin for PidFile
impl UnwindSafe for PidFile
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more