pub struct ControlInfo {
pub listen: String,
pub token: String,
pub pid: u32,
pub started_at: u64,
pub unix_socket: Option<String>,
}Fields§
§listen: String§token: String§pid: u32§started_at: u64§unix_socket: Option<String>Trait Implementations§
Source§impl Clone for ControlInfo
impl Clone for ControlInfo
Source§fn clone(&self) -> ControlInfo
fn clone(&self) -> ControlInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ControlInfo
impl Debug for ControlInfo
Source§impl<'de> Deserialize<'de> for ControlInfo
impl<'de> Deserialize<'de> for ControlInfo
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 ControlInfo
impl RefUnwindSafe for ControlInfo
impl Send for ControlInfo
impl Sync for ControlInfo
impl Unpin for ControlInfo
impl UnsafeUnpin for ControlInfo
impl UnwindSafe for ControlInfo
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