Struct google_container1::api::ReleaseChannel[][src]

pub struct ReleaseChannel {
    pub channel: Option<String>,
}

ReleaseChannel indicates which release channel a cluster is subscribed to. Release channels are arranged in order of risk. When a cluster is subscribed to a release channel, Google maintains both the master version and the node version. Node auto-upgrade defaults to true and cannot be disabled.

This type is not used in any activity, and only used as part of another schema.

Fields

channel: Option<String>

channel specifies which release channel the cluster is subscribed to.

Trait Implementations

impl Clone for ReleaseChannel[src]

impl Debug for ReleaseChannel[src]

impl Default for ReleaseChannel[src]

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

impl Part for ReleaseChannel[src]

impl Serialize for ReleaseChannel[src]

Auto Trait Implementations

impl RefUnwindSafe for ReleaseChannel[src]

impl Send for ReleaseChannel[src]

impl Sync for ReleaseChannel[src]

impl Unpin for ReleaseChannel[src]

impl UnwindSafe for ReleaseChannel[src]

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> Instrument 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.