pub enum AAAtom {
Show 38 variants
N = 0,
CA = 1,
C = 2,
CB = 3,
O = 4,
CG = 5,
CG1 = 6,
CG2 = 7,
OG = 8,
OG1 = 9,
SG = 10,
CD = 11,
CD1 = 12,
CD2 = 13,
ND1 = 14,
ND2 = 15,
OD1 = 16,
OD2 = 17,
SD = 18,
CE = 19,
CE1 = 20,
CE2 = 21,
CE3 = 22,
NE = 23,
NE1 = 24,
NE2 = 25,
OE1 = 26,
OE2 = 27,
CH2 = 28,
NH1 = 29,
NH2 = 30,
OH = 31,
CZ = 32,
CZ2 = 33,
CZ3 = 34,
NZ = 35,
OXT = 36,
Unknown = -1,
}
Variants§
N = 0
CA = 1
C = 2
CB = 3
O = 4
CG = 5
CG1 = 6
CG2 = 7
OG = 8
OG1 = 9
SG = 10
CD = 11
CD1 = 12
CD2 = 13
ND1 = 14
ND2 = 15
OD1 = 16
OD2 = 17
SD = 18
CE = 19
CE1 = 20
CE2 = 21
CE3 = 22
NE = 23
NE1 = 24
NE2 = 25
OE1 = 26
OE2 = 27
CH2 = 28
NH1 = 29
NH2 = 30
OH = 31
CZ = 32
CZ2 = 33
CZ3 = 34
NZ = 35
OXT = 36
Unknown = -1
Implementations§
Trait Implementations§
Source§impl IntoEnumIterator for AAAtom
impl IntoEnumIterator for AAAtom
type Iterator = AAAtomIter
fn iter() -> AAAtomIter ⓘ
impl Copy for AAAtom
impl StructuralPartialEq for AAAtom
Auto Trait Implementations§
impl Freeze for AAAtom
impl RefUnwindSafe for AAAtom
impl Send for AAAtom
impl Sync for AAAtom
impl Unpin for AAAtom
impl UnwindSafe for AAAtom
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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