pub struct RnaBasePair {
pub up_pos: i32,
pub up_score: f64,
pub down_pos: i32,
pub down_score: f64,
pub best_pos: i32,
pub best_score: f64,
}Expand description
An RNA base pair probability.
Replaces the C RNApair struct.
Fields§
§up_pos: i32§up_score: f64§down_pos: i32§down_score: f64§best_pos: i32§best_score: f64Trait Implementations§
Source§impl Clone for RnaBasePair
impl Clone for RnaBasePair
Source§fn clone(&self) -> RnaBasePair
fn clone(&self) -> RnaBasePair
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RnaBasePair
Source§impl Debug for RnaBasePair
impl Debug for RnaBasePair
Auto Trait Implementations§
impl Freeze for RnaBasePair
impl RefUnwindSafe for RnaBasePair
impl Send for RnaBasePair
impl Sync for RnaBasePair
impl Unpin for RnaBasePair
impl UnsafeUnpin for RnaBasePair
impl UnwindSafe for RnaBasePair
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