pub enum RandomXError {
CreationError(String),
FlagConfigError(String),
ParameterError(String),
TryFromIntError(TryFromIntError),
Other(String),
}
Expand description
This enum specifies the possible errors that may occur.
Variants§
CreationError(String)
FlagConfigError(String)
ParameterError(String)
TryFromIntError(TryFromIntError)
Other(String)
Trait Implementations§
Source§impl Clone for RandomXError
impl Clone for RandomXError
Source§fn clone(&self) -> RandomXError
fn clone(&self) -> RandomXError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RandomXError
impl Debug for RandomXError
Source§impl Display for RandomXError
impl Display for RandomXError
Source§impl Error for RandomXError
impl Error for RandomXError
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()
Source§impl From<TryFromIntError> for RandomXError
impl From<TryFromIntError> for RandomXError
Source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RandomXError
impl RefUnwindSafe for RandomXError
impl Send for RandomXError
impl Sync for RandomXError
impl Unpin for RandomXError
impl UnwindSafe for RandomXError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
CreationError
: 24 bytesFlagConfigError
: 24 bytesParameterError
: 24 bytesTryFromIntError
: 0 bytesOther
: 24 bytes