pub enum PaymentCharge {
PaymentCharge(PaymentCharge),
}Expand description
Variants§
PaymentCharge(PaymentCharge)
Trait Implementations§
Source§impl Clone for PaymentCharge
impl Clone for PaymentCharge
Source§fn clone(&self) -> PaymentCharge
fn clone(&self) -> PaymentCharge
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 PaymentCharge
impl Debug for PaymentCharge
Source§impl Deserializable for PaymentCharge
impl Deserializable for PaymentCharge
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<PaymentCharge> for PaymentCharge
impl From<PaymentCharge> for PaymentCharge
Source§fn from(x: PaymentCharge) -> Self
fn from(x: PaymentCharge) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PaymentCharge
impl PartialEq for PaymentCharge
Source§impl Serializable for PaymentCharge
impl Serializable for PaymentCharge
Source§impl TryFrom<PaymentCharge> for PaymentCharge
impl TryFrom<PaymentCharge> for PaymentCharge
Source§type Error = PaymentCharge
type Error = PaymentCharge
The type returned in the event of a conversion error.
impl StructuralPartialEq for PaymentCharge
Auto Trait Implementations§
impl Freeze for PaymentCharge
impl RefUnwindSafe for PaymentCharge
impl Send for PaymentCharge
impl Sync for PaymentCharge
impl Unpin for PaymentCharge
impl UnsafeUnpin for PaymentCharge
impl UnwindSafe for PaymentCharge
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