pub struct OwnerBalanceList {
pub cursor: Option<Base58String>,
pub items: Vec<OwnerBalance>,
}Expand description
OwnerBalanceList
JSON schema
{
"type": "object",
"required": [
"items"
],
"properties": {
"cursor": {
"$ref": "#/components/schemas/Base58String"
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OwnerBalance"
}
}
}
}Fields§
§cursor: Option<Base58String>§items: Vec<OwnerBalance>Implementations§
Source§impl OwnerBalanceList
impl OwnerBalanceList
pub fn builder() -> OwnerBalanceList
Trait Implementations§
Source§impl Clone for OwnerBalanceList
impl Clone for OwnerBalanceList
Source§fn clone(&self) -> OwnerBalanceList
fn clone(&self) -> OwnerBalanceList
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 OwnerBalanceList
impl Debug for OwnerBalanceList
Source§impl<'de> Deserialize<'de> for OwnerBalanceList
impl<'de> Deserialize<'de> for OwnerBalanceList
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<OwnerBalanceList> for OwnerBalanceList
impl From<OwnerBalanceList> for OwnerBalanceList
Source§fn from(value: OwnerBalanceList) -> Self
fn from(value: OwnerBalanceList) -> Self
Converts to this type from the input type.
Source§impl Serialize for OwnerBalanceList
impl Serialize for OwnerBalanceList
Source§impl TryFrom<OwnerBalanceList> for OwnerBalanceList
impl TryFrom<OwnerBalanceList> for OwnerBalanceList
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: OwnerBalanceList) -> Result<Self, ConversionError>
fn try_from(value: OwnerBalanceList) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for OwnerBalanceList
impl RefUnwindSafe for OwnerBalanceList
impl Send for OwnerBalanceList
impl Sync for OwnerBalanceList
impl Unpin for OwnerBalanceList
impl UnsafeUnpin for OwnerBalanceList
impl UnwindSafe for OwnerBalanceList
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