pub struct Tx {
pub from: String,
pub to_: String,
pub amount: String,
pub nonce: i64,
pub ou: String,
pub timestamp: f64,
pub op_type: String,
pub encrypted_data: String,
pub message: String,
pub signature: String,
pub public_key: String,
}Fields§
§from: String§to_: String§amount: String§nonce: i64§ou: String§timestamp: f64§op_type: String§encrypted_data: String§message: String§signature: String§public_key: StringTrait Implementations§
impl StructuralPartialEq for Tx
Auto Trait Implementations§
impl Freeze for Tx
impl RefUnwindSafe for Tx
impl Send for Tx
impl Sync for Tx
impl Unpin for Tx
impl UnsafeUnpin for Tx
impl UnwindSafe for Tx
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