pub struct SegmentPair {
pub group1: AlignmentSegment,
pub group2: AlignmentSegment,
pub number1: i32,
pub number2: i32,
}Expand description
A pair of segments from two groups being aligned.
Replaces the C Segments struct.
Fields§
§group1: AlignmentSegment§group2: AlignmentSegment§number1: i32§number2: i32Trait Implementations§
Source§impl Clone for SegmentPair
impl Clone for SegmentPair
Source§fn clone(&self) -> SegmentPair
fn clone(&self) -> SegmentPair
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 moreAuto Trait Implementations§
impl Freeze for SegmentPair
impl RefUnwindSafe for SegmentPair
impl Send for SegmentPair
impl Sync for SegmentPair
impl Unpin for SegmentPair
impl UnsafeUnpin for SegmentPair
impl UnwindSafe for SegmentPair
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