pub enum ConformerError {
AtomCountMismatch {
expected: usize,
got: usize,
},
}Variants§
Trait Implementations§
Source§impl Debug for ConformerError
impl Debug for ConformerError
Source§impl Display for ConformerError
impl Display for ConformerError
Source§impl Error for ConformerError
impl Error for ConformerError
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 ConformerError
impl PartialEq for ConformerError
Source§fn eq(&self, other: &ConformerError) -> bool
fn eq(&self, other: &ConformerError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConformerError
Auto Trait Implementations§
impl Freeze for ConformerError
impl RefUnwindSafe for ConformerError
impl Send for ConformerError
impl Sync for ConformerError
impl Unpin for ConformerError
impl UnsafeUnpin for ConformerError
impl UnwindSafe for ConformerError
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