pub trait FinalizeProjection {
type Output;
// Required method
unsafe fn finalize(&self) -> Self::Output;
}
Expand description
Implement that if you need to do some kind of post processing like unwrap something or panic if some soundness requirements are not satisfied