Struct gapi_grpc::google::logging::v2::ListLogEntriesResponse[][src]

pub struct ListLogEntriesResponse {
    pub entries: Vec<LogEntry>,
    pub next_page_token: String,
}

Result returned from ListLogEntries.

Fields

entries: 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: 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

impl Clone for ListLogEntriesResponse[src]

impl Debug for ListLogEntriesResponse[src]

impl Default for ListLogEntriesResponse[src]

impl Message for ListLogEntriesResponse[src]

impl PartialEq<ListLogEntriesResponse> for ListLogEntriesResponse[src]

impl StructuralPartialEq for ListLogEntriesResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for ListLogEntriesResponse

impl Send for ListLogEntriesResponse

impl Sync for ListLogEntriesResponse

impl Unpin for ListLogEntriesResponse

impl UnwindSafe for ListLogEntriesResponse

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]