pub struct Deposit {
pub address: String,
pub amount: f64,
pub clearance_state: Option<ClearanceState>,
pub currency: Currency,
pub note: Option<String>,
pub received_timestamp: i64,
pub refund_transaction_id: Option<String>,
pub source_address: Option<String>,
pub state: DepositState,
pub transaction_id: String,
pub updated_timestamp: i64,
}Fields§
§address: String§amount: f64§clearance_state: Option<ClearanceState>§currency: Currency§note: Option<String>§received_timestamp: i64§refund_transaction_id: Option<String>§source_address: Option<String>§state: DepositState§transaction_id: String§updated_timestamp: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Deposit
impl<'de> Deserialize<'de> for Deposit
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
impl StructuralPartialEq for Deposit
Auto Trait Implementations§
impl Freeze for Deposit
impl RefUnwindSafe for Deposit
impl Send for Deposit
impl Sync for Deposit
impl Unpin for Deposit
impl UnwindSafe for Deposit
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