p7_hit_s

Struct p7_hit_s 

Source
#[repr(C)]
pub struct p7_hit_s {
Show 25 fields pub name: *mut c_char, pub acc: *mut c_char, pub desc: *mut c_char, pub window_length: c_int, pub sortkey: f64, pub score: f32, pub pre_score: f32, pub sum_score: f32, pub lnP: f64, pub pre_lnP: f64, pub sum_lnP: f64, pub nexpected: f32, pub nregions: c_int, pub nclustered: c_int, pub noverlaps: c_int, pub nenvelopes: c_int, pub ndom: c_int, pub flags: u32, pub nreported: c_int, pub nincluded: c_int, pub best_domain: c_int, pub seqidx: i64, pub subseq_start: i64, pub dcl: *mut P7_DOMAIN, pub offset: esl_pos_t,
}

Fields§

§name: *mut c_char§acc: *mut c_char§desc: *mut c_char§window_length: c_int§sortkey: f64§score: f32§pre_score: f32§sum_score: f32§lnP: f64§pre_lnP: f64§sum_lnP: f64§nexpected: f32§nregions: c_int§nclustered: c_int§noverlaps: c_int§nenvelopes: c_int§ndom: c_int§flags: u32§nreported: c_int§nincluded: c_int§best_domain: c_int§seqidx: i64§subseq_start: i64§dcl: *mut P7_DOMAIN§offset: esl_pos_t

Trait Implementations§

Source§

impl Clone for p7_hit_s

Source§

fn clone(&self) -> p7_hit_s

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for p7_hit_s

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for p7_hit_s

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.