pub(super) struct ManifestLedger {
pub(super) composed_specs: usize,
pub(super) items: usize,
pub(super) behavior_shapes: Vec<BehaviorShapeSummary>,
pub(super) category_totals: BTreeMap<String, usize>,
pub(super) disposition_totals: BTreeMap<String, usize>,
pub(super) rows: Vec<LedgerRow>,
}Fields§
§composed_specs: usize§items: usize§behavior_shapes: Vec<BehaviorShapeSummary>§category_totals: BTreeMap<String, usize>§disposition_totals: BTreeMap<String, usize>§rows: Vec<LedgerRow>Trait Implementations§
Source§impl Debug for ManifestLedger
impl Debug for ManifestLedger
Auto Trait Implementations§
impl Freeze for ManifestLedger
impl RefUnwindSafe for ManifestLedger
impl Send for ManifestLedger
impl Sync for ManifestLedger
impl Unpin for ManifestLedger
impl UnsafeUnpin for ManifestLedger
impl UnwindSafe for ManifestLedger
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more