pub struct ReceiptOutcome {
pub code: Option<String>,
pub summary: Option<String>,
pub observed_at: Option<String>,
pub data: Option<JsonObject>,
}Fields§
§code: Option<String>§summary: Option<String>§observed_at: Option<String>§data: Option<JsonObject>Trait Implementations§
Source§impl Clone for ReceiptOutcome
impl Clone for ReceiptOutcome
Source§fn clone(&self) -> ReceiptOutcome
fn clone(&self) -> ReceiptOutcome
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 ReceiptOutcome
impl Debug for ReceiptOutcome
Source§impl<'de> Deserialize<'de> for ReceiptOutcome
impl<'de> Deserialize<'de> for ReceiptOutcome
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 ReceiptOutcome
impl PartialEq for ReceiptOutcome
Source§fn eq(&self, other: &ReceiptOutcome) -> bool
fn eq(&self, other: &ReceiptOutcome) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ReceiptOutcome
impl Serialize for ReceiptOutcome
impl StructuralPartialEq for ReceiptOutcome
Auto Trait Implementations§
impl Freeze for ReceiptOutcome
impl RefUnwindSafe for ReceiptOutcome
impl Send for ReceiptOutcome
impl Sync for ReceiptOutcome
impl Unpin for ReceiptOutcome
impl UnsafeUnpin for ReceiptOutcome
impl UnwindSafe for ReceiptOutcome
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