pub enum AtomError {
InvalidCharge(i8),
InvalidIsotope(u16),
MissingBondOrder,
UnknownElement(String),
}Expand description
Errors that can occur when creating or manipulating an atom.
Variants§
InvalidCharge(i8)
The specified charge is out of range (must be between -15 and +15).
InvalidIsotope(u16)
The specified isotope is too large (maximum 999).
MissingBondOrder
Bond order is required but was not provided.
UnknownElement(String)
The specified element is not recognized.
Trait Implementations§
Source§impl Error for AtomError
impl Error for AtomError
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 From<AtomError> for MoleculeError
impl From<AtomError> for MoleculeError
impl StructuralPartialEq for AtomError
Auto Trait Implementations§
impl Freeze for AtomError
impl RefUnwindSafe for AtomError
impl Send for AtomError
impl Sync for AtomError
impl Unpin for AtomError
impl UnsafeUnpin for AtomError
impl UnwindSafe for AtomError
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