pub struct CreditRecentLossEntry {
pub receipt_id: String,
pub observed_at: u64,
pub settlement_status: SettlementStatus,
pub financial_amount: Option<MonetaryAmount>,
pub provisional_loss_amount: Option<MonetaryAmount>,
pub recovered_amount: Option<MonetaryAmount>,
pub evidence_refs: Vec<ExposureLedgerEvidenceReference>,
}Fields§
§receipt_id: String§observed_at: u64§settlement_status: SettlementStatus§financial_amount: Option<MonetaryAmount>§provisional_loss_amount: Option<MonetaryAmount>§recovered_amount: Option<MonetaryAmount>§evidence_refs: Vec<ExposureLedgerEvidenceReference>Trait Implementations§
Source§impl Clone for CreditRecentLossEntry
impl Clone for CreditRecentLossEntry
Source§fn clone(&self) -> CreditRecentLossEntry
fn clone(&self) -> CreditRecentLossEntry
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 CreditRecentLossEntry
impl Debug for CreditRecentLossEntry
Source§impl<'de> Deserialize<'de> for CreditRecentLossEntry
impl<'de> Deserialize<'de> for CreditRecentLossEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreditRecentLossEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CreditRecentLossEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreditRecentLossEntry
impl PartialEq for CreditRecentLossEntry
Source§impl Serialize for CreditRecentLossEntry
impl Serialize for CreditRecentLossEntry
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CreditRecentLossEntry
Auto Trait Implementations§
impl Freeze for CreditRecentLossEntry
impl RefUnwindSafe for CreditRecentLossEntry
impl Send for CreditRecentLossEntry
impl Sync for CreditRecentLossEntry
impl Unpin for CreditRecentLossEntry
impl UnsafeUnpin for CreditRecentLossEntry
impl UnwindSafe for CreditRecentLossEntry
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