pub struct LrInteraction {
pub ligand_name: String,
pub receptor_name: String,
pub interaction_score: f64,
pub p_value: f64,
}Expand description
Ligand-receptor interaction score with permutation p-value.
Fields§
§ligand_name: String§receptor_name: String§interaction_score: f64§p_value: f64Trait Implementations§
Source§impl Clone for LrInteraction
impl Clone for LrInteraction
Source§fn clone(&self) -> LrInteraction
fn clone(&self) -> LrInteraction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LrInteraction
impl RefUnwindSafe for LrInteraction
impl Send for LrInteraction
impl Sync for LrInteraction
impl Unpin for LrInteraction
impl UnsafeUnpin for LrInteraction
impl UnwindSafe for LrInteraction
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