pub struct Call {Show 16 fields
pub seqid: String,
pub family: String,
pub tier: String,
pub is_begin: i64,
pub is_end: i64,
pub is_len: i64,
pub orf_begin: i64,
pub orf_end: i64,
pub strand: char,
pub evalue: f64,
pub qcov: f64,
pub pident: f64,
pub typ: char,
pub tir: Option<Tir>,
pub ncopy: i64,
pub fp_flag: String,
}Fields§
§seqid: String§family: String§tier: String§is_begin: i64§is_end: i64§is_len: i64§orf_begin: i64§orf_end: i64§strand: char§evalue: f64§qcov: f64§pident: f64§typ: char§tir: Option<Tir>§ncopy: i64§fp_flag: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for Call
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnsafeUnpin for Call
impl UnwindSafe for Call
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