pub enum TypesError {
InvalidConfig(String),
}Expand description
Errors returned by shared microsandbox contract helpers.
Variants§
Trait Implementations§
Source§impl Clone for TypesError
impl Clone for TypesError
Source§fn clone(&self) -> TypesError
fn clone(&self) -> TypesError
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 TypesError
impl Debug for TypesError
Source§impl Display for TypesError
impl Display for TypesError
impl Eq for TypesError
Source§impl Error for TypesError
impl Error for TypesError
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()
Source§impl PartialEq for TypesError
impl PartialEq for TypesError
Source§fn eq(&self, other: &TypesError) -> bool
fn eq(&self, other: &TypesError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TypesError
Auto Trait Implementations§
impl Freeze for TypesError
impl RefUnwindSafe for TypesError
impl Send for TypesError
impl Sync for TypesError
impl Unpin for TypesError
impl UnsafeUnpin for TypesError
impl UnwindSafe for TypesError
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