pub struct LaunchdServiceManager {
pub user: bool,
pub config: LaunchdConfig,
}
Expand description
Implementation of ServiceManager
for MacOS’s Launchd
Fields§
§user: bool
Whether or not this manager is operating at the user-level
config: LaunchdConfig
Configuration settings tied to launchd services
Implementations§
Source§impl LaunchdServiceManager
impl LaunchdServiceManager
Sourcepub fn into_system(self) -> Self
pub fn into_system(self) -> Self
Change manager to work with system services
Sourcepub fn with_config(self, config: LaunchdConfig) -> Self
pub fn with_config(self, config: LaunchdConfig) -> Self
Update manager to use the specified config
Trait Implementations§
Source§impl Clone for LaunchdServiceManager
impl Clone for LaunchdServiceManager
Source§fn clone(&self) -> LaunchdServiceManager
fn clone(&self) -> LaunchdServiceManager
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 LaunchdServiceManager
impl Debug for LaunchdServiceManager
Source§impl Default for LaunchdServiceManager
impl Default for LaunchdServiceManager
Source§fn default() -> LaunchdServiceManager
fn default() -> LaunchdServiceManager
Returns the “default value” for a type. Read more
Source§impl From<LaunchdServiceManager> for TypedServiceManager
impl From<LaunchdServiceManager> for TypedServiceManager
Source§fn from(manager: LaunchdServiceManager) -> Self
fn from(manager: LaunchdServiceManager) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LaunchdServiceManager
impl PartialEq for LaunchdServiceManager
Source§impl ServiceManager for LaunchdServiceManager
impl ServiceManager for LaunchdServiceManager
Source§fn stop(&self, ctx: ServiceStopCtx) -> Result<()>
fn stop(&self, ctx: ServiceStopCtx) -> Result<()>
Stops a service.
To stop a service with “KeepAlive” enabled, call uninstall
instead.
Source§fn available(&self) -> Result<bool>
fn available(&self) -> Result<bool>
Determines if the service manager exists (e.g. is
launchd
available on the system?) and
can be usedSource§fn install(&self, ctx: ServiceInstallCtx) -> Result<()>
fn install(&self, ctx: ServiceInstallCtx) -> Result<()>
Installs a new service using the manager
Source§fn uninstall(&self, ctx: ServiceUninstallCtx) -> Result<()>
fn uninstall(&self, ctx: ServiceUninstallCtx) -> Result<()>
Uninstalls an existing service using the manager
Source§fn level(&self) -> ServiceLevel
fn level(&self) -> ServiceLevel
Returns the current target level for the manager
Source§fn set_level(&mut self, level: ServiceLevel) -> Result<()>
fn set_level(&mut self, level: ServiceLevel) -> Result<()>
Sets the target level for the manager
Source§fn status(&self, ctx: ServiceStatusCtx) -> Result<ServiceStatus>
fn status(&self, ctx: ServiceStatusCtx) -> Result<ServiceStatus>
Return the service status info
impl Eq for LaunchdServiceManager
impl StructuralPartialEq for LaunchdServiceManager
Auto Trait Implementations§
impl Freeze for LaunchdServiceManager
impl RefUnwindSafe for LaunchdServiceManager
impl Send for LaunchdServiceManager
impl Sync for LaunchdServiceManager
impl Unpin for LaunchdServiceManager
impl UnwindSafe for LaunchdServiceManager
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.