#[non_exhaustive]pub struct ListTransferLogsResponse {
pub transfer_messages: Vec<TransferMessage>,
pub next_page_token: String,
/* private fields */
}Expand description
The returned list transfer run messages.
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.transfer_messages: Vec<TransferMessage>Output only. The stored pipeline transfer messages.
next_page_token: StringOutput only. The next-pagination token. For multiple-page list results,
this token can be used as the
GetTransferRunLogRequest.page_token
to request the next page of list results.
Implementations§
Source§impl ListTransferLogsResponse
impl ListTransferLogsResponse
pub fn new() -> Self
Sourcepub fn set_transfer_messages<T, V>(self, v: T) -> Self
pub fn set_transfer_messages<T, V>(self, v: T) -> Self
Sets the value of transfer_messages.
Sourcepub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_next_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of next_page_token.
Trait Implementations§
Source§impl Clone for ListTransferLogsResponse
impl Clone for ListTransferLogsResponse
Source§fn clone(&self) -> ListTransferLogsResponse
fn clone(&self) -> ListTransferLogsResponse
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 ListTransferLogsResponse
impl Debug for ListTransferLogsResponse
Source§impl Default for ListTransferLogsResponse
impl Default for ListTransferLogsResponse
Source§fn default() -> ListTransferLogsResponse
fn default() -> ListTransferLogsResponse
Returns the “default value” for a type. Read more
Source§impl Message for ListTransferLogsResponse
impl Message for ListTransferLogsResponse
Source§impl PartialEq for ListTransferLogsResponse
impl PartialEq for ListTransferLogsResponse
impl StructuralPartialEq for ListTransferLogsResponse
Auto Trait Implementations§
impl Freeze for ListTransferLogsResponse
impl RefUnwindSafe for ListTransferLogsResponse
impl Send for ListTransferLogsResponse
impl Sync for ListTransferLogsResponse
impl Unpin for ListTransferLogsResponse
impl UnwindSafe for ListTransferLogsResponse
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