pub struct EpigeneticMark {
pub name: String,
pub value: Value,
pub active: bool,
}Expand description
Runtime behavioral modifiers
Fields§
§name: StringMark name
value: ValueMark value
active: boolWhether this mark is active
Trait Implementations§
Source§impl Clone for EpigeneticMark
impl Clone for EpigeneticMark
Source§fn clone(&self) -> EpigeneticMark
fn clone(&self) -> EpigeneticMark
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 EpigeneticMark
impl Debug for EpigeneticMark
Source§impl<'de> Deserialize<'de> for EpigeneticMark
impl<'de> Deserialize<'de> for EpigeneticMark
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 EpigeneticMark
impl RefUnwindSafe for EpigeneticMark
impl Send for EpigeneticMark
impl Sync for EpigeneticMark
impl Unpin for EpigeneticMark
impl UnsafeUnpin for EpigeneticMark
impl UnwindSafe for EpigeneticMark
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