pub struct ActivationPayload {
pub process_name: String,
pub pid: u32,
pub argv: Vec<String>,
pub cwd: Option<String>,
}Fields§
§process_name: String§pid: u32§argv: Vec<String>§cwd: Option<String>Trait Implementations§
Source§impl Clone for ActivationPayload
impl Clone for ActivationPayload
Source§fn clone(&self) -> ActivationPayload
fn clone(&self) -> ActivationPayload
Returns a duplicate of the value. Read more
1.0.0 · 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 ActivationPayload
impl Debug for ActivationPayload
Source§impl Default for ActivationPayload
impl Default for ActivationPayload
Source§fn default() -> ActivationPayload
fn default() -> ActivationPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivationPayload
impl<'de> Deserialize<'de> for ActivationPayload
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 ActivationPayload
impl RefUnwindSafe for ActivationPayload
impl Send for ActivationPayload
impl Sync for ActivationPayload
impl Unpin for ActivationPayload
impl UnsafeUnpin for ActivationPayload
impl UnwindSafe for ActivationPayload
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