pub struct LastCashoutAction {
pub peer: String,
pub uncashed_amount: Option<BigInt>,
pub transaction_hash: Option<String>,
pub last_cashed_cheque: Option<Cheque>,
pub result: Option<CashoutResult>,
}Expand description
GET /chequebook/cashout/{peer} snapshot.
Fields§
§peer: StringPeer overlay.
uncashed_amount: Option<BigInt>Uncashed amount (PLUR).
transaction_hash: Option<String>Last cashout transaction hash, if any.
last_cashed_cheque: Option<Cheque>Last cashed cheque, if any.
result: Option<CashoutResult>On-chain result, if any.
Trait Implementations§
Source§impl Clone for LastCashoutAction
impl Clone for LastCashoutAction
Source§fn clone(&self) -> LastCashoutAction
fn clone(&self) -> LastCashoutAction
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 LastCashoutAction
impl Debug for LastCashoutAction
Source§impl<'de> Deserialize<'de> for LastCashoutAction
impl<'de> Deserialize<'de> for LastCashoutAction
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 LastCashoutAction
impl PartialEq for LastCashoutAction
Source§fn eq(&self, other: &LastCashoutAction) -> bool
fn eq(&self, other: &LastCashoutAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LastCashoutAction
impl StructuralPartialEq for LastCashoutAction
Auto Trait Implementations§
impl Freeze for LastCashoutAction
impl RefUnwindSafe for LastCashoutAction
impl Send for LastCashoutAction
impl Sync for LastCashoutAction
impl Unpin for LastCashoutAction
impl UnsafeUnpin for LastCashoutAction
impl UnwindSafe for LastCashoutAction
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