ESL_MSA

Struct ESL_MSA 

Source
#[repr(C)]
pub struct ESL_MSA {
Show 51 fields pub aseq: *mut *mut c_char, pub sqname: *mut *mut c_char, pub wgt: *mut f64, pub alen: i64, pub nseq: c_int, pub flags: c_int, pub abc: *mut ESL_ALPHABET, pub ax: *mut *mut ESL_DSQ, pub name: *mut c_char, pub desc: *mut c_char, pub acc: *mut c_char, pub au: *mut c_char, pub ss_cons: *mut c_char, pub sa_cons: *mut c_char, pub pp_cons: *mut c_char, pub rf: *mut c_char, pub mm: *mut c_char, pub sqacc: *mut *mut c_char, pub sqdesc: *mut *mut c_char, pub ss: *mut *mut c_char, pub sa: *mut *mut c_char, pub pp: *mut *mut c_char, pub cutoff: [f32; 6], pub cutset: [c_int; 6], pub sqalloc: c_int, pub sqlen: *mut i64, pub sslen: *mut i64, pub salen: *mut i64, pub pplen: *mut i64, pub lastidx: c_int, pub comment: *mut *mut c_char, pub ncomment: c_int, pub alloc_ncomment: c_int, pub gf_tag: *mut *mut c_char, pub gf: *mut *mut c_char, pub ngf: c_int, pub alloc_ngf: c_int, pub gs_tag: *mut *mut c_char, pub gs: *mut *mut *mut c_char, pub ngs: c_int, pub gc_tag: *mut *mut c_char, pub gc: *mut *mut c_char, pub ngc: c_int, pub gr_tag: *mut *mut c_char, pub gr: *mut *mut *mut c_char, pub ngr: c_int, pub index: *mut ESL_KEYHASH, pub gs_idx: *mut ESL_KEYHASH, pub gc_idx: *mut ESL_KEYHASH, pub gr_idx: *mut ESL_KEYHASH, pub offset: off_t,
}

Fields§

§aseq: *mut *mut c_char§sqname: *mut *mut c_char§wgt: *mut f64§alen: i64§nseq: c_int§flags: c_int§abc: *mut ESL_ALPHABET§ax: *mut *mut ESL_DSQ§name: *mut c_char§desc: *mut c_char§acc: *mut c_char§au: *mut c_char§ss_cons: *mut c_char§sa_cons: *mut c_char§pp_cons: *mut c_char§rf: *mut c_char§mm: *mut c_char§sqacc: *mut *mut c_char§sqdesc: *mut *mut c_char§ss: *mut *mut c_char§sa: *mut *mut c_char§pp: *mut *mut c_char§cutoff: [f32; 6]§cutset: [c_int; 6]§sqalloc: c_int§sqlen: *mut i64§sslen: *mut i64§salen: *mut i64§pplen: *mut i64§lastidx: c_int§comment: *mut *mut c_char§ncomment: c_int§alloc_ncomment: c_int§gf_tag: *mut *mut c_char§gf: *mut *mut c_char§ngf: c_int§alloc_ngf: c_int§gs_tag: *mut *mut c_char§gs: *mut *mut *mut c_char§ngs: c_int§gc_tag: *mut *mut c_char§gc: *mut *mut c_char§ngc: c_int§gr_tag: *mut *mut c_char§gr: *mut *mut *mut c_char§ngr: c_int§index: *mut ESL_KEYHASH§gs_idx: *mut ESL_KEYHASH§gc_idx: *mut ESL_KEYHASH§gr_idx: *mut ESL_KEYHASH§offset: off_t

Trait Implementations§

Source§

impl Clone for ESL_MSA

Source§

fn clone(&self) -> ESL_MSA

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 ESL_MSA

Source§

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

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

impl Copy for ESL_MSA

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.