pub struct TransformCertificate<A: SerialAlphabet> {
pub source_alphabet: AlphabetId,
pub target_alphabet: AlphabetId,
pub aggregate_preserved: bool,
pub order_map: OrdinalMap,
pub inverse: Option<SeriesTransform<A>>,
pub relaxed_invariants: Vec<RelaxedInvariant>,
}Expand description
Algebra evidence for one successfully applied transform.
Fields§
§source_alphabet: AlphabetIdStable identity of the validated source alphabet.
target_alphabet: AlphabetIdStable identity of the validated target alphabet.
aggregate_preserved: boolWhether aggregate policy and counts were preserved under the bijections.
order_map: OrdinalMapExact output-position to source-position map used by the transform.
inverse: Option<SeriesTransform<A>>Exact inverse operation when the transform algebra supplies one.
relaxed_invariants: Vec<RelaxedInvariant>Source invariants intentionally relaxed by this operation.
Trait Implementations§
Source§impl<A: Clone + SerialAlphabet> Clone for TransformCertificate<A>
impl<A: Clone + SerialAlphabet> Clone for TransformCertificate<A>
Source§fn clone(&self) -> TransformCertificate<A>
fn clone(&self) -> TransformCertificate<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 moreSource§impl<A: Debug + SerialAlphabet> Debug for TransformCertificate<A>
impl<A: Debug + SerialAlphabet> Debug for TransformCertificate<A>
impl<A: Eq + SerialAlphabet> Eq for TransformCertificate<A>
Source§impl<A: PartialEq + SerialAlphabet> PartialEq for TransformCertificate<A>
impl<A: PartialEq + SerialAlphabet> PartialEq for TransformCertificate<A>
impl<A: PartialEq + SerialAlphabet> StructuralPartialEq for TransformCertificate<A>
Auto Trait Implementations§
impl<A> Freeze for TransformCertificate<A>where
A: Freeze,
impl<A> RefUnwindSafe for TransformCertificate<A>where
A: RefUnwindSafe,
impl<A> Send for TransformCertificate<A>where
A: Send,
impl<A> Sync for TransformCertificate<A>where
A: Sync,
impl<A> Unpin for TransformCertificate<A>where
A: Unpin,
impl<A> UnsafeUnpin for TransformCertificate<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for TransformCertificate<A>where
A: UnwindSafe,
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