pub enum StereoDescriptor {
None,
TetrahedralClockwise,
TetrahedralCounterclockwise,
BondCis,
BondTrans,
BondAtropClockwise,
BondAtropCounterclockwise,
}Variants§
None
TetrahedralClockwise
TetrahedralCounterclockwise
BondCis
BondTrans
BondAtropClockwise
BondAtropCounterclockwise
Trait Implementations§
Source§impl Clone for StereoDescriptor
impl Clone for StereoDescriptor
Source§fn clone(&self) -> StereoDescriptor
fn clone(&self) -> StereoDescriptor
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 moreimpl Copy for StereoDescriptor
Source§impl Debug for StereoDescriptor
impl Debug for StereoDescriptor
impl Eq for StereoDescriptor
Source§impl Hash for StereoDescriptor
impl Hash for StereoDescriptor
Source§impl Ord for StereoDescriptor
impl Ord for StereoDescriptor
Source§fn cmp(&self, other: &StereoDescriptor) -> Ordering
fn cmp(&self, other: &StereoDescriptor) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StereoDescriptor
impl PartialEq for StereoDescriptor
Source§impl PartialOrd for StereoDescriptor
impl PartialOrd for StereoDescriptor
impl StructuralPartialEq for StereoDescriptor
Auto Trait Implementations§
impl Freeze for StereoDescriptor
impl RefUnwindSafe for StereoDescriptor
impl Send for StereoDescriptor
impl Sync for StereoDescriptor
impl Unpin for StereoDescriptor
impl UnsafeUnpin for StereoDescriptor
impl UnwindSafe for StereoDescriptor
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more