pub struct SearchFoldersRequest {
pub page_size: Option<i32>,
pub page_token: Option<String>,
pub query: Option<String>,
}Expand description
The request message for searching folders.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- search folders (request)
Fields§
§page_size: Option<i32>Optional. The maximum number of folders to return in the response. The server can return fewer folders than requested. If unspecified, server picks an appropriate default.
page_token: Option<String>Optional. A pagination token returned from a previous call to SearchFolders that indicates from where search should continue.
query: Option<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: * Query displayName=Test* returns Folder resources whose display name starts with “Test”. * Query lifecycleState=ACTIVE returns Folder resources with lifecycleState set to ACTIVE. * Query parent=folders/123 returns Folder resources that have folders/123 as a parent resource. * Query parent=folders/123 AND lifecycleState=ACTIVE returns active Folder resources that have folders/123 as a parent resource. * Query displayName=\\"Test String\\" returns Folder resources with display names that include both “Test” and “String”.
Trait Implementations§
Source§impl Clone for SearchFoldersRequest
impl Clone for SearchFoldersRequest
Source§fn clone(&self) -> SearchFoldersRequest
fn clone(&self) -> SearchFoldersRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SearchFoldersRequest
impl Debug for SearchFoldersRequest
Source§impl Default for SearchFoldersRequest
impl Default for SearchFoldersRequest
Source§fn default() -> SearchFoldersRequest
fn default() -> SearchFoldersRequest
Source§impl<'de> Deserialize<'de> for SearchFoldersRequest
impl<'de> Deserialize<'de> for SearchFoldersRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for SearchFoldersRequest
impl Serialize for SearchFoldersRequest
impl RequestValue for SearchFoldersRequest
Auto Trait Implementations§
impl Freeze for SearchFoldersRequest
impl RefUnwindSafe for SearchFoldersRequest
impl Send for SearchFoldersRequest
impl Sync for SearchFoldersRequest
impl Unpin for SearchFoldersRequest
impl UnwindSafe for SearchFoldersRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more