pub struct ListTransferLogsResponse {
pub next_page_token: Option<String>,
pub transfer_messages: Option<Vec<TransferMessage>>,
}Expand description
The returned list transfer run messages.
§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).
Fields§
§next_page_token: Option<String>Output 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.
transfer_messages: Option<Vec<TransferMessage>>Output only. The stored pipeline transfer messages.
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<'de> Deserialize<'de> for ListTransferLogsResponse
impl<'de> Deserialize<'de> for ListTransferLogsResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ListTransferLogsResponse
impl Serialize for ListTransferLogsResponse
impl ResponseResult 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