pub struct ListTransferRunsResponse {
pub next_page_token: Option<String>,
pub transfer_runs: Option<Vec<TransferRun>>,
}Expand description
The returned list of pipelines in the project.
§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).
- locations transfer configs runs list projects (response)
- transfer configs runs list projects (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 ListTransferRunsRequest.page_token to request the next page of list results.
transfer_runs: Option<Vec<TransferRun>>Output only. The stored pipeline transfer runs.
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<'de> Deserialize<'de> for ListTransferRunsResponse
impl<'de> Deserialize<'de> for ListTransferRunsResponse
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 ListTransferRunsResponse
impl Serialize for ListTransferRunsResponse
impl ResponseResult 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