[][src]Struct k8s_csi::v1_3_0::ValidateVolumeCapabilitiesResponse

pub struct ValidateVolumeCapabilitiesResponse {
    pub confirmed: Option<Confirmed>,
    pub message: String,
}

Fields

confirmed: Option<Confirmed>

Confirmed indicates to the CO the set of capabilities that the plugin has validated. This field SHALL only be set to a non-empty value for successful validation responses. For successful validation responses, the CO SHALL compare the fields of this message to the originally requested capabilities in order to guard against an older plugin reporting "valid" for newer capability fields that it does not yet understand. This field is OPTIONAL.

message: String

Message to the CO if confirmed above is empty. This field is OPTIONAL. An empty string is equal to an unspecified field value.

Trait Implementations

impl Clone for ValidateVolumeCapabilitiesResponse[src]

impl Debug for ValidateVolumeCapabilitiesResponse[src]

impl Default for ValidateVolumeCapabilitiesResponse[src]

impl Message for ValidateVolumeCapabilitiesResponse[src]

impl PartialEq<ValidateVolumeCapabilitiesResponse> for ValidateVolumeCapabilitiesResponse[src]

impl StructuralPartialEq for ValidateVolumeCapabilitiesResponse[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> 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> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]