pub struct Hsp {
pub query_start: usize,
pub subject_start: usize,
pub length: usize,
pub score: i32,
}Expand description
A high-scoring segment pair (ungapped local alignment) found by extension.
Fields§
§query_start: usizeStart offset of the segment in the query.
subject_start: usizeStart offset of the segment in the subject.
length: usizeLength of the aligned (ungapped) segment.
score: i32Alignment score of the segment.
Trait Implementations§
impl Copy for Hsp
impl Eq for Hsp
impl StructuralPartialEq for Hsp
Auto Trait Implementations§
impl Freeze for Hsp
impl RefUnwindSafe for Hsp
impl Send for Hsp
impl Sync for Hsp
impl Unpin for Hsp
impl UnsafeUnpin for Hsp
impl UnwindSafe for Hsp
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