pub struct EscrowSnapshot {
pub escrow_id: String,
pub depositor_address: String,
pub beneficiary_address: String,
pub deadline: u64,
pub deposited_minor_units: u128,
pub released_minor_units: u128,
pub refunded: bool,
pub remaining_minor_units: u128,
}Fields§
§escrow_id: String§depositor_address: String§beneficiary_address: String§deadline: u64§deposited_minor_units: u128§released_minor_units: u128§refunded: bool§remaining_minor_units: u128Trait Implementations§
Source§impl Clone for EscrowSnapshot
impl Clone for EscrowSnapshot
Source§fn clone(&self) -> EscrowSnapshot
fn clone(&self) -> EscrowSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EscrowSnapshot
impl Debug for EscrowSnapshot
Source§impl<'de> Deserialize<'de> for EscrowSnapshot
impl<'de> Deserialize<'de> for EscrowSnapshot
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 EscrowSnapshot
Source§impl PartialEq for EscrowSnapshot
impl PartialEq for EscrowSnapshot
Source§impl Serialize for EscrowSnapshot
impl Serialize for EscrowSnapshot
impl StructuralPartialEq for EscrowSnapshot
Auto Trait Implementations§
impl Freeze for EscrowSnapshot
impl RefUnwindSafe for EscrowSnapshot
impl Send for EscrowSnapshot
impl Sync for EscrowSnapshot
impl Unpin for EscrowSnapshot
impl UnsafeUnpin for EscrowSnapshot
impl UnwindSafe for EscrowSnapshot
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