pub struct PaymentOutput {
pub output_index: u32,
pub protocol: String,
pub payment_remittance: Option<PaymentRemittanceInfo>,
pub insertion_remittance: Option<InsertionRemittanceInfo>,
}Expand description
A single output within a Payment struct.
Fields§
§output_index: u32§protocol: String§payment_remittance: Option<PaymentRemittanceInfo>§insertion_remittance: Option<InsertionRemittanceInfo>Trait Implementations§
Source§impl Clone for PaymentOutput
impl Clone for PaymentOutput
Source§fn clone(&self) -> PaymentOutput
fn clone(&self) -> PaymentOutput
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 PaymentOutput
impl Debug for PaymentOutput
Source§impl<'de> Deserialize<'de> for PaymentOutput
impl<'de> Deserialize<'de> for PaymentOutput
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
Auto Trait Implementations§
impl Freeze for PaymentOutput
impl RefUnwindSafe for PaymentOutput
impl Send for PaymentOutput
impl Sync for PaymentOutput
impl Unpin for PaymentOutput
impl UnsafeUnpin for PaymentOutput
impl UnwindSafe for PaymentOutput
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