pub struct CryptoWallet {
pub id: Uuid,
pub name: String,
pub currency: String,
pub balance: String,
pub available_balance: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Expand description
Crypto wallet
Fields§
§id: Uuid§name: String§currency: String§balance: String§available_balance: String§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for CryptoWallet
impl Clone for CryptoWallet
Source§fn clone(&self) -> CryptoWallet
fn clone(&self) -> CryptoWallet
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 CryptoWallet
impl Debug for CryptoWallet
Source§impl<'de> Deserialize<'de> for CryptoWallet
impl<'de> Deserialize<'de> for CryptoWallet
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CryptoWallet, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CryptoWallet, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for CryptoWallet
impl Serialize for CryptoWallet
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for CryptoWallet
impl RefUnwindSafe for CryptoWallet
impl Send for CryptoWallet
impl Sync for CryptoWallet
impl Unpin for CryptoWallet
impl UnwindSafe for CryptoWallet
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