pub struct DaemonSpec {Show 13 fields
pub name: String,
pub command: Vec<String>,
pub working_dir: Option<PathBuf>,
pub env: HashMap<String, String>,
pub health_check: Option<HealthCheckSpec>,
pub restart_policy: RestartPolicy,
pub resource_limits: Option<ResourceLimits>,
pub schedule: Option<String>,
pub tags: Vec<String>,
pub stop_timeout_secs: u64,
pub log_config: Option<LogConfig>,
pub description: Option<String>,
pub user: Option<String>,
}Fields§
§name: String§command: Vec<String>§working_dir: Option<PathBuf>§env: HashMap<String, String>§health_check: Option<HealthCheckSpec>§restart_policy: RestartPolicy§resource_limits: Option<ResourceLimits>§schedule: Option<String>§stop_timeout_secs: u64§log_config: Option<LogConfig>§description: Option<String>§user: Option<String>Trait Implementations§
Source§impl Clone for DaemonSpec
impl Clone for DaemonSpec
Source§fn clone(&self) -> DaemonSpec
fn clone(&self) -> DaemonSpec
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 DaemonSpec
impl Debug for DaemonSpec
Source§impl<'de> Deserialize<'de> for DaemonSpec
impl<'de> Deserialize<'de> for DaemonSpec
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 DaemonSpec
impl RefUnwindSafe for DaemonSpec
impl Send for DaemonSpec
impl Sync for DaemonSpec
impl Unpin for DaemonSpec
impl UnsafeUnpin for DaemonSpec
impl UnwindSafe for DaemonSpec
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more