pub struct AlignmentResult {
pub alignments: Vec<Alignment>,
pub success: bool,
pub error: Option<String>,
}Expand description
Result of aligning a read
Fields§
§alignments: Vec<Alignment>All alignments found
success: boolWhether alignment was successful
error: Option<String>Error message if alignment failed
Implementations§
Trait Implementations§
Source§impl Clone for AlignmentResult
impl Clone for AlignmentResult
Source§fn clone(&self) -> AlignmentResult
fn clone(&self) -> AlignmentResult
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 AlignmentResult
impl Debug for AlignmentResult
Source§impl Default for AlignmentResult
impl Default for AlignmentResult
Source§fn default() -> AlignmentResult
fn default() -> AlignmentResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AlignmentResult
impl RefUnwindSafe for AlignmentResult
impl Send for AlignmentResult
impl Sync for AlignmentResult
impl Unpin for AlignmentResult
impl UnsafeUnpin for AlignmentResult
impl UnwindSafe for AlignmentResult
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