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

pub struct QuobyteVolumeSource {
    pub group: Option<String>,
    pub read_only: Option<bool>,
    pub registry: String,
    pub user: Option<String>,
    pub volume: String,
}

Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.

Fields

group: Option<String>

Group to map volume access to Default is no group

read_only: Option<bool>

ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

registry: String

Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

user: Option<String>

User to map volume access to Defaults to serivceaccount user

volume: String

Volume is a string that references an already created Quobyte volume by name.

Trait Implementations

impl Clone for QuobyteVolumeSource[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<QuobyteVolumeSource> for QuobyteVolumeSource[src]

impl Default for QuobyteVolumeSource[src]

impl Debug for QuobyteVolumeSource[src]

impl Serialize for QuobyteVolumeSource[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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