pub struct CashoutResult {
pub recipient: String,
pub last_payout: Option<BigInt>,
pub bounced: bool,
}Expand description
On-chain outcome of a previous cashout.
Fields§
§recipient: StringRecipient eth address.
last_payout: Option<BigInt>Last on-chain payout (PLUR).
bounced: boolWhether the cashout transaction bounced.
Trait Implementations§
Source§impl Clone for CashoutResult
impl Clone for CashoutResult
Source§fn clone(&self) -> CashoutResult
fn clone(&self) -> CashoutResult
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 CashoutResult
impl Debug for CashoutResult
Source§impl<'de> Deserialize<'de> for CashoutResult
impl<'de> Deserialize<'de> for CashoutResult
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
Source§impl PartialEq for CashoutResult
impl PartialEq for CashoutResult
impl Eq for CashoutResult
impl StructuralPartialEq for CashoutResult
Auto Trait Implementations§
impl Freeze for CashoutResult
impl RefUnwindSafe for CashoutResult
impl Send for CashoutResult
impl Sync for CashoutResult
impl Unpin for CashoutResult
impl UnsafeUnpin for CashoutResult
impl UnwindSafe for CashoutResult
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