pub struct MutationProposal {
pub proposal_id: String,
pub signal_ids: Vec<String>,
pub gene_id: String,
pub description: String,
pub estimated_impact: f32,
pub risk_level: MutationRiskLevel,
pub proposed_changes: Value,
}Expand description
A proposed mutation based on signals
Fields§
§proposal_id: String§signal_ids: Vec<String>§gene_id: String§description: String§estimated_impact: f32§risk_level: MutationRiskLevel§proposed_changes: ValueTrait Implementations§
Source§impl Clone for MutationProposal
impl Clone for MutationProposal
Source§fn clone(&self) -> MutationProposal
fn clone(&self) -> MutationProposal
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 moreSource§impl Debug for MutationProposal
impl Debug for MutationProposal
Source§impl<'de> Deserialize<'de> for MutationProposal
impl<'de> Deserialize<'de> for MutationProposal
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MutationProposal
impl RefUnwindSafe for MutationProposal
impl Send for MutationProposal
impl Sync for MutationProposal
impl Unpin for MutationProposal
impl UnsafeUnpin for MutationProposal
impl UnwindSafe for MutationProposal
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