pub struct TreeCellInspection {
pub path: String,
pub source: EncodedFace,
pub result: EncodedFace,
pub status: CalcStatus,
pub source_revision: u64,
pub receipt: Option<CalcReceipt>,
pub policy_badges: Vec<String>,
}Expand description
Non-evaluating, already-bounded facts for one expression-tree cell.
Fields§
§path: StringCanonical absolute path.
source: EncodedFaceBounded source face produced by inherited codec policy.
result: EncodedFaceBounded result face produced by inherited codec policy.
status: CalcStatusCurrent non-evaluating calculation status.
source_revision: u64Current source revision.
receipt: Option<CalcReceipt>Latest bounded receipt, when any.
policy_badges: Vec<String>Stable effective-policy badges.
Trait Implementations§
Source§impl Clone for TreeCellInspection
impl Clone for TreeCellInspection
Source§fn clone(&self) -> TreeCellInspection
fn clone(&self) -> TreeCellInspection
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 TreeCellInspection
impl Debug for TreeCellInspection
impl Eq for TreeCellInspection
Source§impl PartialEq for TreeCellInspection
impl PartialEq for TreeCellInspection
impl StructuralPartialEq for TreeCellInspection
Auto Trait Implementations§
impl Freeze for TreeCellInspection
impl RefUnwindSafe for TreeCellInspection
impl Send for TreeCellInspection
impl Sync for TreeCellInspection
impl Unpin for TreeCellInspection
impl UnsafeUnpin for TreeCellInspection
impl UnwindSafe for TreeCellInspection
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