[][src]Struct k8s_csi::v1_3_0::ListVolumesRequest

pub struct ListVolumesRequest {
    pub max_entries: i32,
    pub starting_token: String,
}

Fields

max_entries: i32

If specified (non-zero value), the Plugin MUST NOT return more entries than this number in the response. If the actual number of entries is more than this number, the Plugin MUST set next_token in the response which can be used to get the next page of entries in the subsequent ListVolumes call. This field is OPTIONAL. If not specified (zero value), it means there is no restriction on the number of entries that can be returned. The value of this field MUST NOT be negative.

starting_token: String

A token to specify where to start paginating. Set this field to next_token returned by a previous ListVolumes call to get the next page of entries. This field is OPTIONAL. An empty string is equal to an unspecified field value.

Trait Implementations

impl Clone for ListVolumesRequest[src]

impl Debug for ListVolumesRequest[src]

impl Default for ListVolumesRequest[src]

impl Message for ListVolumesRequest[src]

impl PartialEq<ListVolumesRequest> for ListVolumesRequest[src]

impl StructuralPartialEq for ListVolumesRequest[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]