pub struct Tir {
pub irid: i64,
pub irlen: i64,
pub start1: i64,
pub end1: i64,
pub start2: i64,
pub end2: i64,
pub seq1: Vec<u8>,
pub seq2: Vec<u8>,
}Fields§
§irid: i64§irlen: i64§start1: i64§end1: i64§start2: i64§end2: i64§seq1: Vec<u8>§seq2: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tir
impl RefUnwindSafe for Tir
impl Send for Tir
impl Sync for Tir
impl Unpin for Tir
impl UnsafeUnpin for Tir
impl UnwindSafe for Tir
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more