Struct consalign::AlignProbMats
[−]pub struct AlignProbMats<T> {
pub loop_align_prob_mat: HashMap<(T, T), f32, RandomState, Global>,
pub basepair_align_prob_mat: HashMap<(T, T, T, T), f32, RandomState, Global>,
pub align_prob_mat: HashMap<(T, T), f32, RandomState, Global>,
}Fields
loop_align_prob_mat: HashMap<(T, T), f32, RandomState, Global>basepair_align_prob_mat: HashMap<(T, T, T, T), f32, RandomState, Global>align_prob_mat: HashMap<(T, T), f32, RandomState, Global>Implementations
impl<T> AlignProbMats<T>where
T: Hash + Clone,
impl<T> AlignProbMats<T>where
T: Hash + Clone,
pub fn new() -> AlignProbMats<T>
Trait Implementations
impl<T> Clone for AlignProbMats<T>where
T: Clone,
impl<T> Clone for AlignProbMats<T>where
T: Clone,
fn clone(&self) -> AlignProbMats<T>
fn clone(&self) -> AlignProbMats<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations
impl<T> RefUnwindSafe for AlignProbMats<T>where
T: RefUnwindSafe,
impl<T> Send for AlignProbMats<T>where
T: Send,
impl<T> Sync for AlignProbMats<T>where
T: Sync,
impl<T> Unpin for AlignProbMats<T>where
T: Unpin,
impl<T> UnwindSafe for AlignProbMats<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more