pub struct Feature {
pub ftype: FeatureType,
pub atom: AtomIdx,
pub neighbors: Vec<AtomIdx>,
}Expand description
A detected pharmacophore feature in a molecule.
Fields§
§ftype: FeatureTypeType of pharmacophore feature
atom: AtomIdxPrimary atom index
neighbors: Vec<AtomIdx>Secondary atoms (e.g., all atoms in aromatic ring)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Feature
impl RefUnwindSafe for Feature
impl Send for Feature
impl Sync for Feature
impl Unpin for Feature
impl UnsafeUnpin for Feature
impl UnwindSafe for Feature
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