pub enum MetaFlowEvent<T: MetaFlowSpec> {
SetMeta {
meta: T::Meta,
},
Clear,
}
Variants§
Trait Implementations§
Source§impl<T: Clone + MetaFlowSpec> Clone for MetaFlowEvent<T>
impl<T: Clone + MetaFlowSpec> Clone for MetaFlowEvent<T>
Source§fn clone(&self) -> MetaFlowEvent<T>
fn clone(&self) -> MetaFlowEvent<T>
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<T: Debug + MetaFlowSpec> Debug for MetaFlowEvent<T>
impl<T: Debug + MetaFlowSpec> Debug for MetaFlowEvent<T>
Source§impl<'de, T: MetaFlowSpec> Deserialize<'de> for MetaFlowEvent<T>where
T::Meta: Deserialize<'de>,
impl<'de, T: MetaFlowSpec> Deserialize<'de> for MetaFlowEvent<T>where
T::Meta: Deserialize<'de>,
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
Source§impl<T: MetaFlowSpec> Serialize for MetaFlowEvent<T>
impl<T: MetaFlowSpec> Serialize for MetaFlowEvent<T>
Auto Trait Implementations§
impl<T> Freeze for MetaFlowEvent<T>
impl<T> RefUnwindSafe for MetaFlowEvent<T>
impl<T> Send for MetaFlowEvent<T>
impl<T> Sync for MetaFlowEvent<T>
impl<T> Unpin for MetaFlowEvent<T>
impl<T> UnwindSafe for MetaFlowEvent<T>
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