pub enum OpeningShapeError {
PreprocessedWidthMismatch(usize, usize),
MainWidthMismatch(usize, usize),
PermutationWidthMismatch(usize, usize),
QuotientWidthMismatch(usize, usize),
QuotientChunkSizeMismatch(usize, usize),
}
Expand description
An error that occurs when the shape of the openings does not match the expected shape.
Variants§
PreprocessedWidthMismatch(usize, usize)
The width of the preprocessed trace does not match the expected width.
MainWidthMismatch(usize, usize)
The width of the main trace does not match the expected width.
PermutationWidthMismatch(usize, usize)
The width of the permutation trace does not match the expected width.
QuotientWidthMismatch(usize, usize)
The width of the quotient trace does not match the expected width.
QuotientChunkSizeMismatch(usize, usize)
The chunk size of the quotient trace does not match the expected chunk size.
Trait Implementations§
Source§impl Debug for OpeningShapeError
impl Debug for OpeningShapeError
Auto Trait Implementations§
impl Freeze for OpeningShapeError
impl RefUnwindSafe for OpeningShapeError
impl Send for OpeningShapeError
impl Sync for OpeningShapeError
impl Unpin for OpeningShapeError
impl UnwindSafe for OpeningShapeError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more