pub struct HyperliquidBalance {
pub asset: String,
pub total: Decimal,
pub available: Decimal,
pub sequence: u64,
pub ts_event: UnixNanos,
}Expand description
Balance information from Hyperliquid API.
Represents account balance for a specific asset (currency) as returned by Hyperliquid. Used for converting to Nautilus AccountBalance and AccountState events.
See Hyperliquid API documentation:
Fields§
§asset: String§total: Decimal§available: Decimal§sequence: u64§ts_event: UnixNanosImplementations§
Trait Implementations§
Source§impl Clone for HyperliquidBalance
impl Clone for HyperliquidBalance
Source§fn clone(&self) -> HyperliquidBalance
fn clone(&self) -> HyperliquidBalance
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 moreAuto Trait Implementations§
impl Freeze for HyperliquidBalance
impl RefUnwindSafe for HyperliquidBalance
impl Send for HyperliquidBalance
impl Sync for HyperliquidBalance
impl Unpin for HyperliquidBalance
impl UnsafeUnpin for HyperliquidBalance
impl UnwindSafe for HyperliquidBalance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more