pub struct ListDepositDestinationsResponse {
pub deposit_destinations: Vec<DepositDestination>,
pub next_page_token: Option<String>,
}Expand description
ListDepositDestinationsResponse
JSON schema
{
"allOf": [
{
"type": "object",
"required": [
"depositDestinations"
],
"properties": {
"depositDestinations": {
"description": "The list of deposit destinations.",
"type": "array",
"items": {
"$ref": "#/components/schemas/DepositDestination"
}
}
}
},
{
"$ref": "#/components/schemas/ListResponse"
}
]
}Fields§
§deposit_destinations: Vec<DepositDestination>The list of deposit destinations.
next_page_token: Option<String>The token for the next page of items, if any.
Implementations§
Trait Implementations§
Source§impl Clone for ListDepositDestinationsResponse
impl Clone for ListDepositDestinationsResponse
Source§fn clone(&self) -> ListDepositDestinationsResponse
fn clone(&self) -> ListDepositDestinationsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ListDepositDestinationsResponse
impl<'de> Deserialize<'de> for ListDepositDestinationsResponse
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 From<&ListDepositDestinationsResponse> for ListDepositDestinationsResponse
impl From<&ListDepositDestinationsResponse> for ListDepositDestinationsResponse
Source§fn from(value: &ListDepositDestinationsResponse) -> Self
fn from(value: &ListDepositDestinationsResponse) -> Self
Converts to this type from the input type.
Source§impl From<ListDepositDestinationsResponse> for ListDepositDestinationsResponse
impl From<ListDepositDestinationsResponse> for ListDepositDestinationsResponse
Source§fn from(value: ListDepositDestinationsResponse) -> Self
fn from(value: ListDepositDestinationsResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<ListDepositDestinationsResponse> for ListDepositDestinationsResponse
impl TryFrom<ListDepositDestinationsResponse> for ListDepositDestinationsResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: ListDepositDestinationsResponse,
) -> Result<Self, ConversionError>
fn try_from( value: ListDepositDestinationsResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ListDepositDestinationsResponse
impl RefUnwindSafe for ListDepositDestinationsResponse
impl Send for ListDepositDestinationsResponse
impl Sync for ListDepositDestinationsResponse
impl Unpin for ListDepositDestinationsResponse
impl UnsafeUnpin for ListDepositDestinationsResponse
impl UnwindSafe for ListDepositDestinationsResponse
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