pub struct OwnerBalanceList {
pub cursor: Option<String>,
pub items: Vec<OwnerBalance>,
}Fields§
§cursor: Option<String>A base 58 encoded string.
items: Vec<OwnerBalance>Implementations§
Source§impl OwnerBalanceList
impl OwnerBalanceList
pub fn new(items: Vec<OwnerBalance>) -> 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 Default for OwnerBalanceList
impl Default for OwnerBalanceList
Source§fn default() -> OwnerBalanceList
fn default() -> OwnerBalanceList
Returns the “default value” for a type. Read more
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 PartialEq for OwnerBalanceList
impl PartialEq for OwnerBalanceList
Source§impl Serialize for OwnerBalanceList
impl Serialize for OwnerBalanceList
impl StructuralPartialEq for OwnerBalanceList
Auto Trait Implementations§
impl Freeze for OwnerBalanceList
impl RefUnwindSafe for OwnerBalanceList
impl Send for OwnerBalanceList
impl Sync for OwnerBalanceList
impl Unpin 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