pub struct StereoError {
pub atom_idx: usize,
pub kind: StereoErrorKind,
}Expand description
A detected stereochemistry error.
Fields§
§atom_idx: usize0-based atom index of the problematic center.
kind: StereoErrorKindTrait Implementations§
Source§impl Clone for StereoError
impl Clone for StereoError
Source§fn clone(&self) -> StereoError
fn clone(&self) -> StereoError
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 StereoError
impl Debug for StereoError
Source§impl Display for StereoError
impl Display for StereoError
impl Eq for StereoError
Source§impl Error for StereoError
impl Error for StereoError
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 StereoError
impl PartialEq for StereoError
Source§fn eq(&self, other: &StereoError) -> bool
fn eq(&self, other: &StereoError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StereoError
Auto Trait Implementations§
impl Freeze for StereoError
impl RefUnwindSafe for StereoError
impl Send for StereoError
impl Sync for StereoError
impl Unpin for StereoError
impl UnsafeUnpin for StereoError
impl UnwindSafe for StereoError
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