#[non_exhaustive]pub struct ListSinksResponse {
pub sinks: Vec<LogSink>,
pub next_page_token: String,
/* private fields */
}Expand description
Result returned from ListSinks.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sinks: Vec<LogSink>A list of sinks.
next_page_token: StringIf 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.
Implementations§
Source§impl ListSinksResponse
impl ListSinksResponse
Trait Implementations§
Source§impl Clone for ListSinksResponse
impl Clone for ListSinksResponse
Source§fn clone(&self) -> ListSinksResponse
fn clone(&self) -> ListSinksResponse
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 ListSinksResponse
impl Debug for ListSinksResponse
Source§impl Default for ListSinksResponse
impl Default for ListSinksResponse
Source§fn default() -> ListSinksResponse
fn default() -> ListSinksResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListSinksResponse
impl Message for ListSinksResponse
Source§impl PartialEq for ListSinksResponse
impl PartialEq for ListSinksResponse
impl StructuralPartialEq for ListSinksResponse
Auto Trait Implementations§
impl Freeze for ListSinksResponse
impl RefUnwindSafe for ListSinksResponse
impl Send for ListSinksResponse
impl Sync for ListSinksResponse
impl Unpin for ListSinksResponse
impl UnwindSafe for ListSinksResponse
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