Struct block_aligner::scan_block::AlignResult
source · #[repr(C)]pub struct AlignResult {
pub score: i32,
pub query_idx: usize,
pub reference_idx: usize,
}Expand description
Resulting score and alignment end position.
Fields§
§score: i32§query_idx: usize§reference_idx: usizeTrait Implementations§
source§impl Clone for AlignResult
impl Clone for AlignResult
source§fn clone(&self) -> AlignResult
fn clone(&self) -> AlignResult
Returns a copy 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 AlignResult
impl Debug for AlignResult
source§impl PartialEq<AlignResult> for AlignResult
impl PartialEq<AlignResult> for AlignResult
source§fn eq(&self, other: &AlignResult) -> bool
fn eq(&self, other: &AlignResult) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for AlignResult
impl StructuralPartialEq for AlignResult
Auto Trait Implementations§
impl RefUnwindSafe for AlignResult
impl Send for AlignResult
impl Sync for AlignResult
impl Unpin for AlignResult
impl UnwindSafe for AlignResult
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