pub struct AtomLevel;Trait Implementations§
Source§impl SASAProcessor for AtomLevel
impl SASAProcessor for AtomLevel
type Output = Vec<f32>
fn process_atoms( _atoms: &[Atom], atom_sasa: &[f32], _pdb: &PDB, _parent_to_atoms: &FnvHashMap<isize, Vec<usize>>, ) -> Result<Self::Output, SASACalcError>
fn build_atoms_and_mapping( pdb: &PDB, radii_config: Option<&FnvHashMap<String, FnvHashMap<String, f32>>>, allow_vdw_fallback: bool, include_hydrogens: bool, include_hetatms: bool, read_radii_from_occupancy: bool, ) -> Result<(Vec<Atom>, FnvHashMap<isize, Vec<usize>>), SASACalcError>
Auto Trait Implementations§
impl Freeze for AtomLevel
impl RefUnwindSafe for AtomLevel
impl Send for AtomLevel
impl Sync for AtomLevel
impl Unpin for AtomLevel
impl UnwindSafe for AtomLevel
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> 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