Struct gapi_grpc::google::cloud::support::v1alpha1::ListCasesRequest[][src]

pub struct ListCasesRequest {
    pub name: String,
    pub filter: String,
    pub page_size: i64,
    pub page_token: String,
}

The request message for ListCase method.

Fields

name: String

Name of the account resource for which cases are requested. For example: “supportAccounts/accountA”

filter: String

The filter applied to the search results. Currently it only accepts “OPEN” or “CLOSED” strings, filtering out cases that are open or resolved.

page_size: i64

Maximum number of cases fetched with each request.

page_token: String

A token identifying the page of results to return. If unspecified, the first page is retrieved.

Trait Implementations

impl Clone for ListCasesRequest[src]

impl Debug for ListCasesRequest[src]

impl Default for ListCasesRequest[src]

impl Message for ListCasesRequest[src]

impl PartialEq<ListCasesRequest> for ListCasesRequest[src]

impl StructuralPartialEq for ListCasesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListCasesRequest

impl Send for ListCasesRequest

impl Sync for ListCasesRequest

impl Unpin for ListCasesRequest

impl UnwindSafe for ListCasesRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]