pub struct RuntimeComponentSidecarContainersLifecyclePostStartSleep {
pub seconds: i64,
}Expand description
Sleep represents a duration that the container should sleep.
Fields§
§seconds: i64Seconds is the number of seconds to sleep.
Trait Implementations§
Source§impl Clone for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl Clone for RuntimeComponentSidecarContainersLifecyclePostStartSleep
Source§fn clone(&self) -> RuntimeComponentSidecarContainersLifecyclePostStartSleep
fn clone(&self) -> RuntimeComponentSidecarContainersLifecyclePostStartSleep
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 Default for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl Default for RuntimeComponentSidecarContainersLifecyclePostStartSleep
Source§fn default() -> RuntimeComponentSidecarContainersLifecyclePostStartSleep
fn default() -> RuntimeComponentSidecarContainersLifecyclePostStartSleep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl<'de> Deserialize<'de> for RuntimeComponentSidecarContainersLifecyclePostStartSleep
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
Source§impl PartialEq for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl PartialEq for RuntimeComponentSidecarContainersLifecyclePostStartSleep
Source§fn eq(
&self,
other: &RuntimeComponentSidecarContainersLifecyclePostStartSleep,
) -> bool
fn eq( &self, other: &RuntimeComponentSidecarContainersLifecyclePostStartSleep, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeComponentSidecarContainersLifecyclePostStartSleep
Auto Trait Implementations§
impl Freeze for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl RefUnwindSafe for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl Send for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl Sync for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl Unpin for RuntimeComponentSidecarContainersLifecyclePostStartSleep
impl UnwindSafe for RuntimeComponentSidecarContainersLifecyclePostStartSleep
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