pub struct CustodyAccount {
pub id: Option<String>,
pub currency: String,
pub balance: Option<f64>,
pub provider: Option<String>,
pub status: Option<String>,
pub creation_timestamp: Option<u64>,
}Expand description
Custody account information
Fields§
§id: Option<String>Custody account ID
currency: StringCurrency of the custody account
balance: Option<f64>Current balance
provider: Option<String>Custody provider name
status: Option<String>Account status
creation_timestamp: Option<u64>Account creation timestamp in milliseconds
Trait Implementations§
Source§impl Clone for CustodyAccount
impl Clone for CustodyAccount
Source§fn clone(&self) -> CustodyAccount
fn clone(&self) -> CustodyAccount
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 moreSource§impl Debug for CustodyAccount
impl Debug for CustodyAccount
Source§impl<'de> Deserialize<'de> for CustodyAccount
impl<'de> Deserialize<'de> for CustodyAccount
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
Source§impl PartialEq for CustodyAccount
impl PartialEq for CustodyAccount
Source§impl Serialize for CustodyAccount
impl Serialize for CustodyAccount
impl StructuralPartialEq for CustodyAccount
Auto Trait Implementations§
impl Freeze for CustodyAccount
impl RefUnwindSafe for CustodyAccount
impl Send for CustodyAccount
impl Sync for CustodyAccount
impl Unpin for CustodyAccount
impl UnsafeUnpin for CustodyAccount
impl UnwindSafe for CustodyAccount
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