Struct k8s_openapi::api::core::v1::Toleration [−][src]
pub struct Toleration { pub effect: Option<String>, pub key: Option<String>, pub operator: Option<String>, pub toleration_seconds: Option<i64>, pub value: Option<String>, }
Expand description
The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
Fields
effect: Option<String>
Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
key: Option<String>
Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
operator: Option<String>
Operator represents a key’s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
toleration_seconds: Option<i64>
TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.
value: Option<String>
Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
Trait Implementations
impl Clone for Toleration
[src]
impl Clone for Toleration
[src]fn clone(&self) -> Toleration
[src]
fn clone(&self) -> Toleration
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for Toleration
[src]
impl Debug for Toleration
[src]impl Default for Toleration
[src]
impl Default for Toleration
[src]fn default() -> Toleration
[src]
fn default() -> Toleration
[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for Toleration
[src]
impl<'de> Deserialize<'de> for Toleration
[src]fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<Toleration> for Toleration
[src]
impl PartialEq<Toleration> for Toleration
[src]fn eq(&self, other: &Toleration) -> bool
[src]
fn eq(&self, other: &Toleration) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &Toleration) -> bool
[src]
fn ne(&self, other: &Toleration) -> bool
[src]This method tests for !=
.
impl Serialize for Toleration
[src]
impl Serialize for Toleration
[src]impl StructuralPartialEq for Toleration
[src]
Auto Trait Implementations
impl RefUnwindSafe for Toleration
impl Send for Toleration
impl Sync for Toleration
impl Unpin for Toleration
impl UnwindSafe for Toleration
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,