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