pub enum ProteinEffect {
Unknown,
NoProteinProduced,
Edit {
location: Interval<ProteinCoordinate>,
edit: ProteinEdit,
},
}Expand description
Supported protein consequence forms.
Variants§
Trait Implementations§
Source§impl Clone for ProteinEffect
impl Clone for ProteinEffect
Source§fn clone(&self) -> ProteinEffect
fn clone(&self) -> ProteinEffect
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 ProteinEffect
impl Debug for ProteinEffect
Source§impl PartialEq for ProteinEffect
impl PartialEq for ProteinEffect
impl Eq for ProteinEffect
impl StructuralPartialEq for ProteinEffect
Auto Trait Implementations§
impl Freeze for ProteinEffect
impl RefUnwindSafe for ProteinEffect
impl Send for ProteinEffect
impl Sync for ProteinEffect
impl Unpin for ProteinEffect
impl UnsafeUnpin for ProteinEffect
impl UnwindSafe for ProteinEffect
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