pub struct BinanceIncomeRecord {
pub symbol: Option<Ustr>,
pub income_type: BinanceIncomeType,
pub income: String,
pub asset: Ustr,
pub time: i64,
pub info: Option<String>,
pub tran_id: Option<i64>,
pub trade_id: Option<i64>,
}Expand description
Income history record from GET /fapi/v1/income or GET /dapi/v1/income.
§References
Fields§
§symbol: Option<Ustr>Symbol name (may be empty for transfers).
income_type: BinanceIncomeTypeIncome type (e.g., FUNDING_FEE, COMMISSION).
income: StringIncome amount.
asset: UstrAsset code.
time: i64Event time in milliseconds.
info: Option<String>Additional info field.
tran_id: Option<i64>Transaction ID.
trade_id: Option<i64>Related trade ID.
Trait Implementations§
Source§impl Clone for BinanceIncomeRecord
impl Clone for BinanceIncomeRecord
Source§fn clone(&self) -> BinanceIncomeRecord
fn clone(&self) -> BinanceIncomeRecord
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinanceIncomeRecord
impl Debug for BinanceIncomeRecord
Source§impl<'de> Deserialize<'de> for BinanceIncomeRecord
impl<'de> Deserialize<'de> for BinanceIncomeRecord
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 BinanceIncomeRecord
impl RefUnwindSafe for BinanceIncomeRecord
impl Send for BinanceIncomeRecord
impl Sync for BinanceIncomeRecord
impl Unpin for BinanceIncomeRecord
impl UnwindSafe for BinanceIncomeRecord
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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