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 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