pub enum Error {
InvalidPieceOffset {
piece_offset: u16,
max_pieces_in_sector: u16,
},
SectorExpired {
expiration_history_size: HistorySize,
current_history_size: HistorySize,
},
InvalidPiece,
OutsideSolutionRange {
half_solution_range: SolutionRange,
solution_distance: SolutionRange,
},
InvalidProofOfSpace,
InvalidAuditChunkOffset,
InvalidChunk(String),
InvalidChunkWitness,
InvalidHistorySize,
}
Expand description
Errors encountered by the Subspace consensus primitives.
Variants§
InvalidPieceOffset
Invalid piece offset
Fields
SectorExpired
Sector expired
Fields
§
expiration_history_size: HistorySize
Expiration history size
§
current_history_size: HistorySize
Current history size
InvalidPiece
Piece verification failed
OutsideSolutionRange
Solution is outside of challenge range
Fields
§
half_solution_range: SolutionRange
Half of solution range
§
solution_distance: SolutionRange
Solution distance
InvalidProofOfSpace
Invalid proof of space
InvalidAuditChunkOffset
Invalid audit chunk offset
InvalidChunk(String)
Invalid chunk
InvalidChunkWitness
Invalid chunk witness
InvalidHistorySize
Invalid history size
Trait Implementations§
source§impl Error for Error
impl Error for Error
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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