pub struct ExposureLedgerReport {
pub schema: String,
pub generated_at: u64,
pub filters: ExposureLedgerQuery,
pub support_boundary: ExposureLedgerSupportBoundary,
pub summary: ExposureLedgerSummary,
pub positions: Vec<ExposureLedgerCurrencyPosition>,
pub receipts: Vec<ExposureLedgerReceiptEntry>,
pub decisions: Vec<ExposureLedgerDecisionEntry>,
}Fields§
§schema: String§generated_at: u64§filters: ExposureLedgerQuery§support_boundary: ExposureLedgerSupportBoundary§summary: ExposureLedgerSummary§positions: Vec<ExposureLedgerCurrencyPosition>§receipts: Vec<ExposureLedgerReceiptEntry>§decisions: Vec<ExposureLedgerDecisionEntry>Trait Implementations§
Source§impl Clone for ExposureLedgerReport
impl Clone for ExposureLedgerReport
Source§fn clone(&self) -> ExposureLedgerReport
fn clone(&self) -> ExposureLedgerReport
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 ExposureLedgerReport
impl Debug for ExposureLedgerReport
Source§impl<'de> Deserialize<'de> for ExposureLedgerReport
impl<'de> Deserialize<'de> for ExposureLedgerReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExposureLedgerReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExposureLedgerReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ExposureLedgerReport
impl PartialEq for ExposureLedgerReport
Source§impl Serialize for ExposureLedgerReport
impl Serialize for ExposureLedgerReport
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 ExposureLedgerReport
Auto Trait Implementations§
impl Freeze for ExposureLedgerReport
impl RefUnwindSafe for ExposureLedgerReport
impl Send for ExposureLedgerReport
impl Sync for ExposureLedgerReport
impl Unpin for ExposureLedgerReport
impl UnsafeUnpin for ExposureLedgerReport
impl UnwindSafe for ExposureLedgerReport
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