pub struct DepositId {
pub currency: String,
pub user_id: u64,
pub address: String,
pub tx_hash: String,
}Expand description
Deposit identifier for set_clearance_originator.
Identifies a specific deposit transaction.
Fields§
§currency: StringCurrency symbol
user_id: u64User ID of the (sub)account
address: StringDeposit address in currency format
tx_hash: StringTransaction hash in proper format for the currency
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DepositId
impl<'de> Deserialize<'de> for DepositId
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 DepositId
Auto Trait Implementations§
impl Freeze for DepositId
impl RefUnwindSafe for DepositId
impl Send for DepositId
impl Sync for DepositId
impl Unpin for DepositId
impl UnsafeUnpin for DepositId
impl UnwindSafe for DepositId
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