[][src]Struct k8s_openapi::api::policy::v1beta1::IDRange

pub struct IDRange {
    pub max: i64,
    pub min: i64,
}

IDRange provides a min/max of an allowed range of IDs.

Fields

max: i64

max is the end of the range, inclusive.

min: i64

min is the start of the range, inclusive.

Trait Implementations

impl Clone for IDRange[src]

impl Debug for IDRange[src]

impl Default for IDRange[src]

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

impl PartialEq<IDRange> for IDRange[src]

impl Serialize for IDRange[src]

impl StructuralPartialEq for IDRange[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.