Skip to main content

primer_rec

Struct primer_rec 

Source
#[repr(C)]
pub struct primer_rec {
Show 29 fields pub repeat_sim: rep_sim, pub temp: f64, pub bound: f64, pub gc_content: f64, pub position_penalty: f64, pub quality: f64, pub end_stability: f64, pub start: c_int, pub seq_quality: c_int, pub seq_end_quality: c_int, pub self_any: f64, pub self_end: f64, pub hairpin_th: f64, pub template_mispriming: f64, pub template_mispriming_r: f64, pub self_any_struct: *mut c_char, pub self_end_struct: *mut c_char, pub hairpin_struct: *mut c_char, pub template_mispriming_struct: *mut c_char, pub template_mispriming_r_struct: *mut c_char, pub length: c_char, pub num_ns: c_char, pub must_use: c_char, pub overlaps: c_char, pub rev_comp: c_int, pub problems: oligo_problems, pub overlaps_overlap_position: c_char, pub template_mispriming_ok: c_char, pub failure_rate: f64,
}

Fields§

§repeat_sim: rep_sim§temp: f64§bound: f64§gc_content: f64§position_penalty: f64§quality: f64§end_stability: f64§start: c_int§seq_quality: c_int§seq_end_quality: c_int§self_any: f64§self_end: f64§hairpin_th: f64§template_mispriming: f64§template_mispriming_r: f64§self_any_struct: *mut c_char§self_end_struct: *mut c_char§hairpin_struct: *mut c_char§template_mispriming_struct: *mut c_char§template_mispriming_r_struct: *mut c_char§length: c_char§num_ns: c_char§must_use: c_char§overlaps: c_char§rev_comp: c_int§problems: oligo_problems§overlaps_overlap_position: c_char§template_mispriming_ok: c_char§failure_rate: f64

Trait Implementations§

Source§

impl Clone for primer_rec

Source§

fn clone(&self) -> primer_rec

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 primer_rec

Source§

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

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

impl Copy for primer_rec

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.