pub enum UffType {
Show 45 variants
C_3,
C_2,
C_1,
C_R,
N_3,
N_2,
N_1,
N_R,
O_3,
O_2,
O_1,
O_R,
S_3,
S_2,
S_R,
P_3,
P_R,
H_,
F_,
Cl,
Br,
I_,
Li,
Na,
K,
Ca,
Mg,
Fe,
Co,
Ni,
Cu,
Zn,
Mn,
Cr,
V_,
Mo,
W_,
Pd,
Pt,
Au,
Ag,
Hg,
Al,
Si,
Unknown,
}Expand description
UFF atom type, following the notation in Rappé 1992 Table 1.
The underscore in names like C_3 replaces the period used in the paper
(C.3) to form valid Rust identifiers.
Variants§
C_3
C_2
C_1
C_R
N_3
N_2
N_1
N_R
O_3
O_2
O_1
O_R
S_3
S_2
S_R
P_3
P_R
H_
F_
Cl
Br
I_
Li
Na
K
Ca
Mg
Fe
Co
Ni
Cu
Zn
Mn
Cr
V_
Mo
W_
Pd
Pt
Au
Ag
Hg
Al
Si
Unknown
Implementations§
Trait Implementations§
impl Copy for UffType
impl Eq for UffType
impl StructuralPartialEq for UffType
Auto Trait Implementations§
impl Freeze for UffType
impl RefUnwindSafe for UffType
impl Send for UffType
impl Sync for UffType
impl Unpin for UffType
impl UnsafeUnpin for UffType
impl UnwindSafe for UffType
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