Struct gapi_grpc::google::api::serviceusage::v1beta1::ListServicesRequest[][src]

pub struct ListServicesRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub filter: String,
}

Request message for the ListServices method.

Fields

parent: String

Parent to search for services on.

An example name would be: projects/123 where 123 is the project number (not project ID).

page_size: i32

Requested size of the next page of data. Requested page size cannot exceed 200. If not set, the default page size is 50.

page_token: String

Token identifying which result to start with, which is returned by a previous list call.

filter: String

Only list services that conform to the given filter. The allowed filter strings are state:ENABLED and state:DISABLED.

Trait Implementations

impl Clone for ListServicesRequest[src]

impl Debug for ListServicesRequest[src]

impl Default for ListServicesRequest[src]

impl Message for ListServicesRequest[src]

impl PartialEq<ListServicesRequest> for ListServicesRequest[src]

impl StructuralPartialEq for ListServicesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListServicesRequest

impl Send for ListServicesRequest

impl Sync for ListServicesRequest

impl Unpin for ListServicesRequest

impl UnwindSafe for ListServicesRequest

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]