Struct google_logging2::api::ListSavedQueriesResponse
source · pub struct ListSavedQueriesResponse {
pub next_page_token: Option<String>,
pub saved_queries: Option<Vec<SavedQuery>>,
pub unreachable: Option<Vec<String>>,
}Expand description
The response from ListSavedQueries.
§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).
- locations saved queries list billing accounts (response)
- locations saved queries list folders (response)
- locations saved queries list organizations (response)
- locations saved queries list projects (response)
Fields§
§next_page_token: Option<String>If there might be more results than appear in this response, then nextPageToken is included. To get the next set of results, call the same method again using the value of nextPageToken as pageToken.
saved_queries: Option<Vec<SavedQuery>>A list of saved queries.
unreachable: Option<Vec<String>>The unreachable resources. It can be either 1) a saved query if a specific query is unreachable or 2) a location if a specific location is unreachabe. “projects/[PROJECT_ID]/locations/[LOCATION_ID]/savedQueries/[QUERY_ID]” “projects/[PROJECT_ID]/locations/[LOCATION_ID]” For example: “projects/my-project/locations/global/savedQueries/12345678” “projects/my-project/locations/global” If there are unreachable resources, the response will first return pages that contain saved queries, and then return pages that contain the unreachable resources.
Trait Implementations§
source§impl Clone for ListSavedQueriesResponse
impl Clone for ListSavedQueriesResponse
source§fn clone(&self) -> ListSavedQueriesResponse
fn clone(&self) -> ListSavedQueriesResponse
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListSavedQueriesResponse
impl Debug for ListSavedQueriesResponse
source§impl Default for ListSavedQueriesResponse
impl Default for ListSavedQueriesResponse
source§fn default() -> ListSavedQueriesResponse
fn default() -> ListSavedQueriesResponse
source§impl<'de> Deserialize<'de> for ListSavedQueriesResponse
impl<'de> Deserialize<'de> for ListSavedQueriesResponse
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 ListSavedQueriesResponse
impl Serialize for ListSavedQueriesResponse
impl ResponseResult for ListSavedQueriesResponse
Auto Trait Implementations§
impl Freeze for ListSavedQueriesResponse
impl RefUnwindSafe for ListSavedQueriesResponse
impl Send for ListSavedQueriesResponse
impl Sync for ListSavedQueriesResponse
impl Unpin for ListSavedQueriesResponse
impl UnwindSafe for ListSavedQueriesResponse
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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