pub struct ClientAccount {
pub client_id: ClientId,
pub available_balance: Amount,
pub held_balance: Amount,
pub state: ClientAccountState,
/* private fields */
}
Fields§
§client_id: ClientId
§available_balance: Amount
§held_balance: Amount
§state: ClientAccountState
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ClientAccount
impl RefUnwindSafe for ClientAccount
impl Send for ClientAccount
impl Sync for ClientAccount
impl Unpin for ClientAccount
impl UnwindSafe for ClientAccount
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