Struct gapi_grpc::google::cloud::resourcemanager::v2::SearchFoldersRequest[][src]

pub struct SearchFoldersRequest {
    pub page_size: i32,
    pub page_token: String,
    pub query: String,
}

The request message for searching folders.

Fields

page_size: i32

Optional. The maximum number of folders to return in the response.

page_token: String

Optional. A pagination token returned from a previous call to SearchFolders that indicates from where search should continue.

query: String

Search criteria used to select the Folders to return. If no search criteria is specified then all accessible folders will be returned.

Query expressions can be used to restrict results based upon displayName, lifecycleState and parent, where the operators =, NOT, AND and OR can be used along with the suffix wildcard symbol *.

The displayName field in a query expression should use escaped quotes for values that include whitespace to prevent unexpected behavior.

Some example queries are:

Trait Implementations

impl Clone for SearchFoldersRequest[src]

impl Debug for SearchFoldersRequest[src]

impl Default for SearchFoldersRequest[src]

impl Message for SearchFoldersRequest[src]

impl PartialEq<SearchFoldersRequest> for SearchFoldersRequest[src]

impl StructuralPartialEq for SearchFoldersRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for SearchFoldersRequest

impl Send for SearchFoldersRequest

impl Sync for SearchFoldersRequest

impl Unpin for SearchFoldersRequest

impl UnwindSafe for SearchFoldersRequest

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]