pub struct TreeBalanceNode {
pub balance: AccountBalance,
pub children: HashMap<String, TreeBalanceNode>,
}
Expand description
Balance of one or more accounts. Converted to a tree.
Fields§
§balance: AccountBalance
§children: HashMap<String, TreeBalanceNode>
Implementations§
Trait Implementations§
Source§impl Clone for TreeBalanceNode
impl Clone for TreeBalanceNode
Source§fn clone(&self) -> TreeBalanceNode
fn clone(&self) -> TreeBalanceNode
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 TreeBalanceNode
impl Debug for TreeBalanceNode
Source§impl Default for TreeBalanceNode
impl Default for TreeBalanceNode
Auto Trait Implementations§
impl Freeze for TreeBalanceNode
impl RefUnwindSafe for TreeBalanceNode
impl Send for TreeBalanceNode
impl Sync for TreeBalanceNode
impl Unpin for TreeBalanceNode
impl UnwindSafe for TreeBalanceNode
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