#[non_exhaustive]pub struct ListTransferConfigsResponse {
pub transfer_configs: Vec<TransferConfig>,
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_configs: Vec<TransferConfig>Output only. The stored pipeline transfer configurations.
next_page_token: StringOutput only. The next-pagination token. For multiple-page list results,
this token can be used as the
ListTransferConfigsRequest.page_token
to request the next page of list results.
Implementations§
Source§impl ListTransferConfigsResponse
impl ListTransferConfigsResponse
pub fn new() -> Self
Sourcepub fn set_transfer_configs<T, V>(self, v: T) -> Self
pub fn set_transfer_configs<T, V>(self, v: T) -> Self
Sets the value of transfer_configs.
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 ListTransferConfigsResponse
impl Clone for ListTransferConfigsResponse
Source§fn clone(&self) -> ListTransferConfigsResponse
fn clone(&self) -> ListTransferConfigsResponse
Returns a copy 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 ListTransferConfigsResponse
impl Debug for ListTransferConfigsResponse
Source§impl Default for ListTransferConfigsResponse
impl Default for ListTransferConfigsResponse
Source§fn default() -> ListTransferConfigsResponse
fn default() -> ListTransferConfigsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTransferConfigsResponsewhere
ListTransferConfigsResponse: Default,
impl<'de> Deserialize<'de> for ListTransferConfigsResponsewhere
ListTransferConfigsResponse: Default,
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
impl StructuralPartialEq for ListTransferConfigsResponse
Auto Trait Implementations§
impl Freeze for ListTransferConfigsResponse
impl RefUnwindSafe for ListTransferConfigsResponse
impl Send for ListTransferConfigsResponse
impl Sync for ListTransferConfigsResponse
impl Unpin for ListTransferConfigsResponse
impl UnwindSafe for ListTransferConfigsResponse
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