pub struct Transfer {
pub sig: String,
pub from_address: String,
pub to_address: String,
pub amount: i64,
pub memo: Option<String>,
pub transfer_type: TransferType,
pub ts: i64,
pub slot: i64,
pub is_escrow: bool,
pub fee: i64,
pub difficulty: Option<i64>,
pub timing: Option<i64>,
}
Fields§
§sig: String
§from_address: String
§to_address: String
§amount: i64
§memo: Option<String>
§transfer_type: TransferType
§ts: i64
§slot: i64
§is_escrow: bool
§fee: i64
§difficulty: Option<i64>
§timing: Option<i64>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Transfer
impl<'de> Deserialize<'de> for Transfer
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 Eq for Transfer
impl StructuralPartialEq for Transfer
Auto Trait Implementations§
impl Freeze for Transfer
impl RefUnwindSafe for Transfer
impl Send for Transfer
impl Sync for Transfer
impl Unpin for Transfer
impl UnwindSafe for Transfer
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)