pub struct DerivedCellDeployment {
pub plan: SerialPlan,
pub kind: DerivationKind,
pub generator_size: usize,
pub occurrences: Vec<DerivedCellOccurrence>,
}Expand description
One inspectable derived-cell deployment with immutable plan output.
Fields§
§plan: SerialPlanImmutable structural plan produced by the deployment.
kind: DerivationKindThe detected derivation family that licensed the deployment.
generator_size: usizeThe generator-cell size in ordinals.
occurrences: Vec<DerivedCellOccurrence>Occurrence-by-occurrence derivation evidence.
Trait Implementations§
Source§impl Clone for DerivedCellDeployment
impl Clone for DerivedCellDeployment
Source§fn clone(&self) -> DerivedCellDeployment
fn clone(&self) -> DerivedCellDeployment
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 DerivedCellDeployment
impl Debug for DerivedCellDeployment
impl Eq for DerivedCellDeployment
Source§impl PartialEq for DerivedCellDeployment
impl PartialEq for DerivedCellDeployment
impl StructuralPartialEq for DerivedCellDeployment
Auto Trait Implementations§
impl Freeze for DerivedCellDeployment
impl RefUnwindSafe for DerivedCellDeployment
impl Send for DerivedCellDeployment
impl Sync for DerivedCellDeployment
impl Unpin for DerivedCellDeployment
impl UnsafeUnpin for DerivedCellDeployment
impl UnwindSafe for DerivedCellDeployment
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