pub struct SearchAllResourcesResponse {
pub next_page_token: Option<String>,
pub results: Option<Vec<ResourceSearchResult>>,
}Expand description
Search all resources response.
§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 all resources (response)
Fields§
§next_page_token: Option<String>If there are more results than those appearing in this response, then next_page_token is included. To get the next set of results, call this method again using the value of next_page_token as page_token.
results: Option<Vec<ResourceSearchResult>>A list of Resources that match the search query. It contains the resource standard metadata information.
Trait Implementations§
Source§impl Clone for SearchAllResourcesResponse
impl Clone for SearchAllResourcesResponse
Source§fn clone(&self) -> SearchAllResourcesResponse
fn clone(&self) -> SearchAllResourcesResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SearchAllResourcesResponse
impl Debug for SearchAllResourcesResponse
Source§impl Default for SearchAllResourcesResponse
impl Default for SearchAllResourcesResponse
Source§fn default() -> SearchAllResourcesResponse
fn default() -> SearchAllResourcesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchAllResourcesResponse
impl<'de> Deserialize<'de> for SearchAllResourcesResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
impl ResponseResult for SearchAllResourcesResponse
Auto Trait Implementations§
impl Freeze for SearchAllResourcesResponse
impl RefUnwindSafe for SearchAllResourcesResponse
impl Send for SearchAllResourcesResponse
impl Sync for SearchAllResourcesResponse
impl Unpin for SearchAllResourcesResponse
impl UnwindSafe for SearchAllResourcesResponse
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
Mutably borrows from an owned value. Read more