Struct gapi_grpc::google::cloud::resourcemanager::v3::ListProjectsResponse[][src]

pub struct ListProjectsResponse {
    pub projects: Vec<Project>,
    pub next_page_token: String,
}

A page of the response received from the [ListProjects][google.cloud.resourcemanager.v3.Projects.ListProjects] method.

A paginated response where more pages are available has next_page_token set. This token can be used in a subsequent request to retrieve the next request page.

NOTE: A response may contain fewer elements than the request page_size and still have a next_page_token.

Fields

projects: Vec<Project>

The list of Projects under the parent. This list can be paginated.

next_page_token: String

Pagination token.

If the result set is too large to fit in a single response, this token is returned. It encodes the position of the current result cursor. Feeding this value into a new list request with the page_token parameter gives the next page of the results.

When next_page_token is not filled in, there is no next page and the list returned is the last page in the result set.

Pagination tokens have a limited lifetime.

Trait Implementations

impl Clone for ListProjectsResponse[src]

impl Debug for ListProjectsResponse[src]

impl Default for ListProjectsResponse[src]

impl Message for ListProjectsResponse[src]

impl PartialEq<ListProjectsResponse> for ListProjectsResponse[src]

impl StructuralPartialEq for ListProjectsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for ListProjectsResponse

impl Send for ListProjectsResponse

impl Sync for ListProjectsResponse

impl Unpin for ListProjectsResponse

impl UnwindSafe for ListProjectsResponse

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]