pub struct ListLogEntriesResponse {
pub entries: Option<Vec<LogEntry>>,
pub next_page_token: Option<String>,
}
Expand description
Result returned from ListLogEntries.
§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).
- list entries (response)
Fields§
§entries: Option<Vec<LogEntry>>
A list of log entries. If entries is empty, nextPageToken may still be returned, indicating that more entries may exist. See nextPageToken for more information.
next_page_token: Option<String>
If there might be more results than those appearing in this response, then nextPageToken is included. To get the next set of results, call this method again using the value of nextPageToken as pageToken.If a value for next_page_token appears and the entries field is empty, it means that the search found no log entries so far but it did not have time to search all the possible log entries. Retry the method with this value for page_token to continue the search. Alternatively, consider speeding up the search by changing your filter to specify a single log name or resource type, or to narrow the time range of the search.
Trait Implementations§
Source§impl Clone for ListLogEntriesResponse
impl Clone for ListLogEntriesResponse
Source§fn clone(&self) -> ListLogEntriesResponse
fn clone(&self) -> ListLogEntriesResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ListLogEntriesResponse
impl Debug for ListLogEntriesResponse
Source§impl Default for ListLogEntriesResponse
impl Default for ListLogEntriesResponse
Source§fn default() -> ListLogEntriesResponse
fn default() -> ListLogEntriesResponse
Source§impl<'de> Deserialize<'de> for ListLogEntriesResponse
impl<'de> Deserialize<'de> for ListLogEntriesResponse
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 ListLogEntriesResponse
impl Serialize for ListLogEntriesResponse
impl ResponseResult for ListLogEntriesResponse
Auto Trait Implementations§
impl Freeze for ListLogEntriesResponse
impl RefUnwindSafe for ListLogEntriesResponse
impl Send for ListLogEntriesResponse
impl Sync for ListLogEntriesResponse
impl Unpin for ListLogEntriesResponse
impl UnwindSafe for ListLogEntriesResponse
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