pub struct DaemonSetSpec {
pub selector: Value,
pub template: K8sPodTemplate,
pub update_strategy: Option<Value>,
pub revision_history_limit: Option<u32>,
pub min_ready_seconds: Option<u32>,
}Fields§
§selector: Value§template: K8sPodTemplate§update_strategy: Option<Value>§revision_history_limit: Option<u32>§min_ready_seconds: Option<u32>Trait Implementations§
Source§impl Clone for DaemonSetSpec
impl Clone for DaemonSetSpec
Source§fn clone(&self) -> DaemonSetSpec
fn clone(&self) -> DaemonSetSpec
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 DaemonSetSpec
impl Debug for DaemonSetSpec
Source§impl<'de> Deserialize<'de> for DaemonSetSpec
impl<'de> Deserialize<'de> for DaemonSetSpec
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 DaemonSetSpec
impl RefUnwindSafe for DaemonSetSpec
impl Send for DaemonSetSpec
impl Sync for DaemonSetSpec
impl Unpin for DaemonSetSpec
impl UnsafeUnpin for DaemonSetSpec
impl UnwindSafe for DaemonSetSpec
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