pub enum Error {
InvalidPieceOffset {
piece_offset: u16,
max_pieces_in_sector: u16,
},
FutureHistorySize {
current: HistorySize,
solution: HistorySize,
},
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
FutureHistorySize
History size is in the future
Fields
§
current: HistorySizeCurrent history size
§
solution: HistorySizeHistory size solution was created for
SectorExpired
Sector expired
Fields
§
expiration_history_size: HistorySizeExpiration history size
§
current_history_size: HistorySizeCurrent history size
InvalidPiece
Piece verification failed
OutsideSolutionRange
Solution is outside of challenge range
Fields
§
half_solution_range: SolutionRangeHalf of solution range
§
solution_distance: SolutionRangeSolution 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