pub enum BeamrError {
Load(LoadError),
Exec(ExecError),
}Expand description
Top-level error type for beamr operations.
Variants§
Trait Implementations§
Source§impl Clone for BeamrError
impl Clone for BeamrError
Source§fn clone(&self) -> BeamrError
fn clone(&self) -> BeamrError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BeamrError
impl Debug for BeamrError
Source§impl Display for BeamrError
impl Display for BeamrError
impl Eq for BeamrError
Source§impl Error for BeamrError
impl Error for BeamrError
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<ExecError> for BeamrError
impl From<ExecError> for BeamrError
Source§impl From<LoadError> for BeamrError
impl From<LoadError> for BeamrError
Source§impl PartialEq for BeamrError
impl PartialEq for BeamrError
Source§fn eq(&self, other: &BeamrError) -> bool
fn eq(&self, other: &BeamrError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BeamrError
Auto Trait Implementations§
impl Freeze for BeamrError
impl RefUnwindSafe for BeamrError
impl Send for BeamrError
impl Sync for BeamrError
impl Unpin for BeamrError
impl UnsafeUnpin for BeamrError
impl UnwindSafe for BeamrError
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.