pub struct ListBalancesResponse {
pub balances: Vec<Balance>,
pub next_page_token: Option<String>,
}Expand description
ListBalancesResponse
JSON schema
{
"allOf": [
{
"$ref": "#/components/schemas/Balances"
},
{
"$ref": "#/components/schemas/ListResponse"
}
]
}Fields§
§balances: Vec<Balance>The list of balances.
next_page_token: Option<String>The token for the next page of items, if any.
Implementations§
Source§impl ListBalancesResponse
impl ListBalancesResponse
pub fn builder() -> ListBalancesResponse
Trait Implementations§
Source§impl Clone for ListBalancesResponse
impl Clone for ListBalancesResponse
Source§fn clone(&self) -> ListBalancesResponse
fn clone(&self) -> ListBalancesResponse
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 Debug for ListBalancesResponse
impl Debug for ListBalancesResponse
Source§impl<'de> Deserialize<'de> for ListBalancesResponse
impl<'de> Deserialize<'de> for ListBalancesResponse
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<&ListBalancesResponse> for ListBalancesResponse
impl From<&ListBalancesResponse> for ListBalancesResponse
Source§fn from(value: &ListBalancesResponse) -> Self
fn from(value: &ListBalancesResponse) -> Self
Converts to this type from the input type.
Source§impl From<ListBalancesResponse> for ListBalancesResponse
impl From<ListBalancesResponse> for ListBalancesResponse
Source§fn from(value: ListBalancesResponse) -> Self
fn from(value: ListBalancesResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for ListBalancesResponse
impl Serialize for ListBalancesResponse
Source§impl TryFrom<ListBalancesResponse> for ListBalancesResponse
impl TryFrom<ListBalancesResponse> for ListBalancesResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: ListBalancesResponse) -> Result<Self, ConversionError>
fn try_from(value: ListBalancesResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for ListBalancesResponse
impl RefUnwindSafe for ListBalancesResponse
impl Send for ListBalancesResponse
impl Sync for ListBalancesResponse
impl Unpin for ListBalancesResponse
impl UnsafeUnpin for ListBalancesResponse
impl UnwindSafe for ListBalancesResponse
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