pub struct BalanceExEntry {
pub balance: String,
pub hold_trade: String,
pub credit: Option<String>,
pub credit_used: Option<String>,
}Expand description
A single per-asset entry from POST /0/private/BalanceEx.
Distinct from BalanceResponse, which carries only the total wallet amount: this also
reports the portion Kraken holds against resting orders, which maps to the locked component
of [nautilus_model::types::AccountBalance].
Fields§
§balance: StringTotal balance amount for the asset.
hold_trade: StringTotal held amount for the asset, reserved by the venue against resting orders.
credit: Option<String>Total credit amount, present only for accounts with a credit line.
credit_used: Option<String>Used credit amount, present only for accounts with a credit line.
Trait Implementations§
Source§impl Clone for BalanceExEntry
impl Clone for BalanceExEntry
Source§impl Debug for BalanceExEntry
impl Debug for BalanceExEntry
Source§impl<'de> Deserialize<'de> for BalanceExEntry
impl<'de> Deserialize<'de> for BalanceExEntry
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
Auto Trait Implementations§
impl Freeze for BalanceExEntry
impl RefUnwindSafe for BalanceExEntry
impl Send for BalanceExEntry
impl Sync for BalanceExEntry
impl Unpin for BalanceExEntry
impl UnsafeUnpin for BalanceExEntry
impl UnwindSafe for BalanceExEntry
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> 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