pub struct StereoCompleteness {
pub specified: usize,
pub unspecified: usize,
pub total_centers: usize,
}Expand description
Summary of stereocenters in a molecule.
Fields§
§specified: usizeStereocenters with an explicit @/@@ annotation.
unspecified: usizeStereocenters with 4 distinct heavy-atom neighbours but no annotation.
total_centers: usizespecified + unspecified
Trait Implementations§
Source§impl Clone for StereoCompleteness
impl Clone for StereoCompleteness
Source§fn clone(&self) -> StereoCompleteness
fn clone(&self) -> StereoCompleteness
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 StereoCompleteness
impl Debug for StereoCompleteness
impl Eq for StereoCompleteness
Source§impl PartialEq for StereoCompleteness
impl PartialEq for StereoCompleteness
Source§fn eq(&self, other: &StereoCompleteness) -> bool
fn eq(&self, other: &StereoCompleteness) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StereoCompleteness
Auto Trait Implementations§
impl Freeze for StereoCompleteness
impl RefUnwindSafe for StereoCompleteness
impl Send for StereoCompleteness
impl Sync for StereoCompleteness
impl Unpin for StereoCompleteness
impl UnsafeUnpin for StereoCompleteness
impl UnwindSafe for StereoCompleteness
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