#[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 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 AlignResult
impl Debug for AlignResult
Source§impl PartialEq for AlignResult
impl PartialEq for AlignResult
impl Copy for AlignResult
impl StructuralPartialEq for AlignResult
Auto Trait Implementations§
impl Freeze for AlignResult
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