pub struct ProcessPlan {
pub id: String,
pub role: ProcessRole,
pub command: CommandSpec,
pub readiness: ReadinessProbe,
}Fields§
§id: String§role: ProcessRole§command: CommandSpec§readiness: ReadinessProbeTrait Implementations§
Source§impl Clone for ProcessPlan
impl Clone for ProcessPlan
Source§fn clone(&self) -> ProcessPlan
fn clone(&self) -> ProcessPlan
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProcessPlan
impl Debug for ProcessPlan
Source§impl<'de> Deserialize<'de> for ProcessPlan
impl<'de> Deserialize<'de> for ProcessPlan
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
impl Eq for ProcessPlan
Source§impl PartialEq for ProcessPlan
impl PartialEq for ProcessPlan
Source§impl Serialize for ProcessPlan
impl Serialize for ProcessPlan
impl StructuralPartialEq for ProcessPlan
Auto Trait Implementations§
impl Freeze for ProcessPlan
impl RefUnwindSafe for ProcessPlan
impl Send for ProcessPlan
impl Sync for ProcessPlan
impl Unpin for ProcessPlan
impl UnsafeUnpin for ProcessPlan
impl UnwindSafe for ProcessPlan
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