pub enum TypedPStateEvent<T: DeserializeOwned> {
KeyValuePairs(TypedKeyValuePairs<T>),
Deleted(TypedKeyValuePairs<T>),
}Variants§
KeyValuePairs(TypedKeyValuePairs<T>)
Deleted(TypedKeyValuePairs<T>)
Trait Implementations§
Source§impl<T: Clone + DeserializeOwned> Clone for TypedPStateEvent<T>
impl<T: Clone + DeserializeOwned> Clone for TypedPStateEvent<T>
Source§fn clone(&self) -> TypedPStateEvent<T>
fn clone(&self) -> TypedPStateEvent<T>
Returns a copy 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 + DeserializeOwned> Debug for TypedPStateEvent<T>
impl<T: Debug + DeserializeOwned> Debug for TypedPStateEvent<T>
Source§impl<T: PartialEq + DeserializeOwned> PartialEq for TypedPStateEvent<T>
impl<T: PartialEq + DeserializeOwned> PartialEq for TypedPStateEvent<T>
Source§impl<T: DeserializeOwned> TryFrom<PStateEvent> for TypedPStateEvent<T>
impl<T: DeserializeOwned> TryFrom<PStateEvent> for TypedPStateEvent<T>
impl<T: Eq + DeserializeOwned> Eq for TypedPStateEvent<T>
impl<T: DeserializeOwned> StructuralPartialEq for TypedPStateEvent<T>
Auto Trait Implementations§
impl<T> Freeze for TypedPStateEvent<T>
impl<T> RefUnwindSafe for TypedPStateEvent<T>where
T: RefUnwindSafe,
impl<T> Send for TypedPStateEvent<T>where
T: Send,
impl<T> Sync for TypedPStateEvent<T>where
T: Sync,
impl<T> Unpin for TypedPStateEvent<T>where
T: Unpin,
impl<T> UnwindSafe for TypedPStateEvent<T>where
T: UnwindSafe,
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