Enum cairo_vm::vm::errors::trace_errors::TraceError
source · pub enum TraceError {
TraceNotEnabled,
AlreadyRelocated,
RegNotRelocatable,
NoRelocationFound,
MemoryError(MemoryError),
}Variants§
Trait Implementations§
source§impl Debug for TraceError
impl Debug for TraceError
source§impl Display for TraceError
impl Display for TraceError
source§impl Error for TraceError
impl Error for TraceError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<MemoryError> for TraceError
impl From<MemoryError> for TraceError
source§fn from(source: MemoryError) -> Self
fn from(source: MemoryError) -> Self
Converts to this type from the input type.
source§impl From<TraceError> for CairoRunError
impl From<TraceError> for CairoRunError
source§fn from(source: TraceError) -> Self
fn from(source: TraceError) -> Self
Converts to this type from the input type.
source§impl From<TraceError> for VirtualMachineError
impl From<TraceError> for VirtualMachineError
source§fn from(source: TraceError) -> Self
fn from(source: TraceError) -> Self
Converts to this type from the input type.
source§impl PartialEq<TraceError> for TraceError
impl PartialEq<TraceError> for TraceError
source§fn eq(&self, other: &TraceError) -> bool
fn eq(&self, other: &TraceError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TraceError
impl StructuralEq for TraceError
impl StructuralPartialEq for TraceError
Auto Trait Implementations§
impl RefUnwindSafe for TraceError
impl Send for TraceError
impl Sync for TraceError
impl Unpin for TraceError
impl UnwindSafe for TraceError
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.