pub struct ScalePlanLedger<'a> { /* private fields */ }Expand description
Read-only view of one compiled plan’s exact domain, field, topology, and proof-obligation ledger.
The view has no constructor and cannot be converted back into a
ScalePlan; only plan_scale can compile an authoritative ledger.
Implementations§
Source§impl<'a> ScalePlanLedger<'a>
impl<'a> ScalePlanLedger<'a>
Sourcepub fn field_rows(self) -> Iter<'a, ScaleFieldPlan> ⓘ
pub fn field_rows(self) -> Iter<'a, ScaleFieldPlan> ⓘ
Exact container-level modeled field rows in deterministic source order.
Sourcepub fn payload_shapes(self) -> Iter<'a, ScalePayloadShapeRow> ⓘ
pub fn payload_shapes(self) -> Iter<'a, ScalePayloadShapeRow> ⓘ
Numeric-value-free payload-shape rows, including empty containers.
Sourcepub fn obligations(self) -> Iter<'a, ScaleProofObligation> ⓘ
pub fn obligations(self) -> Iter<'a, ScaleProofObligation> ⓘ
Typed proof obligations derived from the same field and payload inventory.
Sourcepub fn source_topology(self) -> Iter<'a, ScaleSourceTopologyRow> ⓘ
pub fn source_topology(self) -> Iter<'a, ScaleSourceTopologyRow> ⓘ
Canonical source-keyed topology for the complete modeled projection.
Trait Implementations§
Source§impl<'a> Clone for ScalePlanLedger<'a>
impl<'a> Clone for ScalePlanLedger<'a>
Source§fn clone(&self) -> ScalePlanLedger<'a>
fn clone(&self) -> ScalePlanLedger<'a>
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 moreimpl<'a> Copy for ScalePlanLedger<'a>
Auto Trait Implementations§
impl<'a> Freeze for ScalePlanLedger<'a>
impl<'a> RefUnwindSafe for ScalePlanLedger<'a>
impl<'a> Send for ScalePlanLedger<'a>
impl<'a> Sync for ScalePlanLedger<'a>
impl<'a> Unpin for ScalePlanLedger<'a>
impl<'a> UnsafeUnpin for ScalePlanLedger<'a>
impl<'a> UnwindSafe for ScalePlanLedger<'a>
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