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

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

A page of the response received from the [SearchProjects][google.cloud.resourcemanager.v3.Projects.SearchProjects] 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.

Fields

projects: Vec<Project>

The list of Projects that matched the list filter query. 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 SearchProjectsResponse[src]

impl Debug for SearchProjectsResponse[src]

impl Default for SearchProjectsResponse[src]

impl Message for SearchProjectsResponse[src]

impl PartialEq<SearchProjectsResponse> for SearchProjectsResponse[src]

impl StructuralPartialEq for SearchProjectsResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for SearchProjectsResponse

impl Send for SearchProjectsResponse

impl Sync for SearchProjectsResponse

impl Unpin for SearchProjectsResponse

impl UnwindSafe for SearchProjectsResponse

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]