Enum rust_sasa::SASAResult
source · pub enum SASAResult {
Atom(Vec<f32>),
Residue(Vec<ResidueResult>),
Chain(Vec<ChainResult>),
Protein(f32),
}Variants§
Trait Implementations§
source§impl Debug for SASAResult
impl Debug for SASAResult
source§impl PartialEq for SASAResult
impl PartialEq for SASAResult
source§fn eq(&self, other: &SASAResult) -> bool
fn eq(&self, other: &SASAResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SASAResult
Auto Trait Implementations§
impl Freeze for SASAResult
impl RefUnwindSafe for SASAResult
impl Send for SASAResult
impl Sync for SASAResult
impl Unpin for SASAResult
impl UnwindSafe for SASAResult
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> Pointable for T
impl<T> Pointable for T
source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.