pub struct DaemonSpawnConfig {
pub plugin_name: String,
pub daemon_command: String,
pub additional_args: Vec<String>,
}Expand description
Configuration for spawning a daemon process
Fields§
§plugin_name: StringPlugin name (used as first argument)
daemon_command: StringDaemon command (used as second argument)
additional_args: Vec<String>Additional arguments to pass to the daemon
Implementations§
Trait Implementations§
Source§impl Clone for DaemonSpawnConfig
impl Clone for DaemonSpawnConfig
Source§fn clone(&self) -> DaemonSpawnConfig
fn clone(&self) -> DaemonSpawnConfig
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 moreAuto Trait Implementations§
impl Freeze for DaemonSpawnConfig
impl RefUnwindSafe for DaemonSpawnConfig
impl Send for DaemonSpawnConfig
impl Sync for DaemonSpawnConfig
impl Unpin for DaemonSpawnConfig
impl UnwindSafe for DaemonSpawnConfig
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