Skip to main content

p3_global_settings

Struct p3_global_settings 

Source
#[repr(C)]
pub struct p3_global_settings {
Show 53 fields pub primer_task: task, pub pick_left_primer: c_int, pub pick_right_primer: c_int, pub pick_internal_oligo: c_int, pub rev_comp_internal_oligo_g_c: c_int, pub no_internal_oligo_5_G: c_int, pub file_flag: c_int, pub first_base_index: c_int, pub liberal_base: c_int, pub num_return: c_int, pub pick_anyway: c_int, pub lib_ambiguity_codes_consensus: c_int, pub quality_range_min: c_int, pub quality_range_max: c_int, pub p_args: args_for_one_oligo_or_primer, pub o_args: args_for_one_oligo_or_primer, pub tm_santalucia: tm_method_type, pub salt_corrections: salt_correction_type, pub annealing_temp: f64, pub max_end_stability: f64, pub max_end_gc: c_int, pub gc_clamp: c_int, pub lowercase_masking: c_int, pub sequencing: sequencing_parameters, pub outside_penalty: f64, pub inside_penalty: f64, pub pr_min: [c_int; 200], pub pr_max: [c_int; 200], pub num_intervals: c_int, pub product_opt_size: c_int, pub product_max_tm: f64, pub product_min_tm: f64, pub product_opt_tm: f64, pub pair_max_template_mispriming: f64, pub pair_max_template_mispriming_th: f64, pub pair_repeat_compl: f64, pub pair_compl_any: f64, pub pair_compl_any_th: f64, pub pair_compl_end: f64, pub pair_compl_end_th: f64, pub thermodynamic_oligo_alignment: c_int, pub thermodynamic_template_alignment: c_int, pub thermodynamic_parameters: thal_parameters, pub show_secondary_structure_alignment: c_int, pub max_diff_tm: f64, pub pr_pair_weights: pair_weights, pub min_left_three_prime_distance: c_int, pub min_internal_three_prime_distance: c_int, pub min_right_three_prime_distance: c_int, pub mask_template: c_int, pub masking_parameters_changed: c_int, pub mp: masker_parameters, pub dump: c_int,
}

Fields§

§primer_task: task§pick_left_primer: c_int§pick_right_primer: c_int§pick_internal_oligo: c_int§rev_comp_internal_oligo_g_c: c_int§no_internal_oligo_5_G: c_int§file_flag: c_int§first_base_index: c_int§liberal_base: c_int§num_return: c_int§pick_anyway: c_int§lib_ambiguity_codes_consensus: c_int§quality_range_min: c_int§quality_range_max: c_int§p_args: args_for_one_oligo_or_primer§o_args: args_for_one_oligo_or_primer§tm_santalucia: tm_method_type§salt_corrections: salt_correction_type§annealing_temp: f64§max_end_stability: f64§max_end_gc: c_int§gc_clamp: c_int§lowercase_masking: c_int§sequencing: sequencing_parameters§outside_penalty: f64§inside_penalty: f64§pr_min: [c_int; 200]§pr_max: [c_int; 200]§num_intervals: c_int§product_opt_size: c_int§product_max_tm: f64§product_min_tm: f64§product_opt_tm: f64§pair_max_template_mispriming: f64§pair_max_template_mispriming_th: f64§pair_repeat_compl: f64§pair_compl_any: f64§pair_compl_any_th: f64§pair_compl_end: f64§pair_compl_end_th: f64§thermodynamic_oligo_alignment: c_int§thermodynamic_template_alignment: c_int§thermodynamic_parameters: thal_parameters§show_secondary_structure_alignment: c_int§max_diff_tm: f64§pr_pair_weights: pair_weights§min_left_three_prime_distance: c_int§min_internal_three_prime_distance: c_int§min_right_three_prime_distance: c_int§mask_template: c_int§masking_parameters_changed: c_int§mp: masker_parameters§dump: c_int

Trait Implementations§

Source§

impl Clone for p3_global_settings

Source§

fn clone(&self) -> p3_global_settings

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 p3_global_settings

Source§

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

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

impl Copy for p3_global_settings

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.