pub struct KeysendTx {
pub id: String,
pub wallet_id: String,
pub type: Option<String>,
pub total_amount: String,
pub fee: String,
pub amount: String,
pub description: Option<String>,
pub status: String,
pub confirmed_at: Option<DateTime<Utc>>,
}
Fields§
§id: String
§wallet_id: String
§type: Option<String>
§total_amount: String
§fee: String
§amount: String
§description: Option<String>
§status: String
§confirmed_at: Option<DateTime<Utc>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeysendTx
impl<'de> Deserialize<'de> for KeysendTx
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 KeysendTx
impl RefUnwindSafe for KeysendTx
impl Send for KeysendTx
impl Sync for KeysendTx
impl Unpin for KeysendTx
impl UnwindSafe for KeysendTx
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