pub struct SecondaryStructureAssignment {
pub chain_id: char,
pub assignments: Vec<SecondaryStructure>,
}Expand description
Secondary structure assignment for a chain.
Fields§
§chain_id: charChain identifier.
assignments: Vec<SecondaryStructure>One assignment per residue.
Implementations§
Trait Implementations§
Source§impl Clone for SecondaryStructureAssignment
impl Clone for SecondaryStructureAssignment
Source§fn clone(&self) -> SecondaryStructureAssignment
fn clone(&self) -> SecondaryStructureAssignment
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecondaryStructureAssignment
impl Debug for SecondaryStructureAssignment
Auto Trait Implementations§
impl Freeze for SecondaryStructureAssignment
impl RefUnwindSafe for SecondaryStructureAssignment
impl Send for SecondaryStructureAssignment
impl Sync for SecondaryStructureAssignment
impl Unpin for SecondaryStructureAssignment
impl UnsafeUnpin for SecondaryStructureAssignment
impl UnwindSafe for SecondaryStructureAssignment
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