pub enum DecoherenceTagValue {
Form(WaveForm, String),
Gamma(f32),
}Expand description
Parsed result from a decoherence PropertyTag string.
Variants§
Form(WaveForm, String)
A form tag: target wave form + optional animation clip name.
Gamma(f32)
A gamma override tag: decoherence rate value.
Trait Implementations§
Source§impl Clone for DecoherenceTagValue
impl Clone for DecoherenceTagValue
Source§fn clone(&self) -> DecoherenceTagValue
fn clone(&self) -> DecoherenceTagValue
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 DecoherenceTagValue
impl Debug for DecoherenceTagValue
Source§impl PartialEq for DecoherenceTagValue
impl PartialEq for DecoherenceTagValue
impl StructuralPartialEq for DecoherenceTagValue
Auto Trait Implementations§
impl Freeze for DecoherenceTagValue
impl RefUnwindSafe for DecoherenceTagValue
impl Send for DecoherenceTagValue
impl Sync for DecoherenceTagValue
impl Unpin for DecoherenceTagValue
impl UnsafeUnpin for DecoherenceTagValue
impl UnwindSafe for DecoherenceTagValue
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