[][src]Struct k8s_openapi::api::core::v1::WeightedPodAffinityTerm

pub struct WeightedPodAffinityTerm {
    pub pod_affinity_term: PodAffinityTerm,
    pub weight: i32,
}

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

Fields

pod_affinity_term: PodAffinityTerm

Required. A pod affinity term, associated with the corresponding weight.

weight: i32

weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

Trait Implementations

impl Clone for WeightedPodAffinityTerm[src]

impl Debug for WeightedPodAffinityTerm[src]

impl Default for WeightedPodAffinityTerm[src]

impl<'de> Deserialize<'de> for WeightedPodAffinityTerm[src]

impl PartialEq<WeightedPodAffinityTerm> for WeightedPodAffinityTerm[src]

impl Serialize for WeightedPodAffinityTerm[src]

impl StructuralPartialEq for WeightedPodAffinityTerm[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.