pub struct ServiceConfig {
pub name: &'static str,
pub label: &'static str,
pub description: &'static str,
pub binary: PathBuf,
pub args: &'static [&'static str],
pub log_file: PathBuf,
}Fields§
§name: &'static str§label: &'static str§description: &'static str§binary: PathBuf§args: &'static [&'static str]§log_file: PathBufAuto Trait Implementations§
impl Freeze for ServiceConfig
impl RefUnwindSafe for ServiceConfig
impl Send for ServiceConfig
impl Sync for ServiceConfig
impl Unpin for ServiceConfig
impl UnsafeUnpin for ServiceConfig
impl UnwindSafe for ServiceConfig
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