pub struct BioDerivedState(/* private fields */);Implementations§
Source§impl BioDerivedState
impl BioDerivedState
pub const NONE: BioDerivedState
pub const ATOM_INDEX: BioDerivedState
pub const RESIDUE_INDEX: BioDerivedState
pub const CHAIN_INDEX: BioDerivedState
pub const ENTITY_INDEX: BioDerivedState
pub const SEQUENCE_CACHE: BioDerivedState
pub const POLYMER_CACHE: BioDerivedState
pub const ALTLOC_CACHE: BioDerivedState
pub const ASSEMBLY_CACHE: BioDerivedState
pub const BOND_CACHE: BioDerivedState
pub const BACKBONE_GEOMETRY: BioDerivedState
pub const SIDECHAIN_GEOMETRY: BioDerivedState
pub const NUCLEIC_GEOMETRY: BioDerivedState
pub const SECONDARY_STRUCTURE: BioDerivedState
pub const CONTACT_MAP: BioDerivedState
pub const GRAPH_CACHE: BioDerivedState
pub const fn union(self, other: BioDerivedState) -> BioDerivedState
pub const fn contains(self, other: BioDerivedState) -> bool
Trait Implementations§
Source§impl BitOr for BioDerivedState
impl BitOr for BioDerivedState
Source§type Output = BioDerivedState
type Output = BioDerivedState
The resulting type after applying the
| operator.Source§fn bitor(self, rhs: BioDerivedState) -> <BioDerivedState as BitOr>::Output
fn bitor(self, rhs: BioDerivedState) -> <BioDerivedState as BitOr>::Output
Performs the
| operation. Read moreSource§impl Clone for BioDerivedState
impl Clone for BioDerivedState
Source§fn clone(&self) -> BioDerivedState
fn clone(&self) -> BioDerivedState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BioDerivedState
Source§impl Debug for BioDerivedState
impl Debug for BioDerivedState
impl Eq for BioDerivedState
Source§impl PartialEq for BioDerivedState
impl PartialEq for BioDerivedState
Source§fn eq(&self, other: &BioDerivedState) -> bool
fn eq(&self, other: &BioDerivedState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BioDerivedState
Auto Trait Implementations§
impl Freeze for BioDerivedState
impl RefUnwindSafe for BioDerivedState
impl Send for BioDerivedState
impl Sync for BioDerivedState
impl Unpin for BioDerivedState
impl UnsafeUnpin for BioDerivedState
impl UnwindSafe for BioDerivedState
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,
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