pub enum PStateEvent {
KeyValuePairs(KeyValuePairs),
Deleted(KeyValuePairs),
}Variants§
KeyValuePairs(KeyValuePairs)
Deleted(KeyValuePairs)
Trait Implementations§
Source§impl Clone for PStateEvent
impl Clone for PStateEvent
Source§fn clone(&self) -> PStateEvent
fn clone(&self) -> PStateEvent
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 Debug for PStateEvent
impl Debug for PStateEvent
Source§impl<'de> Deserialize<'de> for PStateEvent
impl<'de> Deserialize<'de> for PStateEvent
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 From<PStateEvent> for Vec<Option<Value>>
impl From<PStateEvent> for Vec<Option<Value>>
Source§fn from(e: PStateEvent) -> Self
fn from(e: PStateEvent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PStateEvent
impl PartialEq for PStateEvent
Source§impl Serialize for PStateEvent
impl Serialize for PStateEvent
Source§impl<T: DeserializeOwned> TryFrom<PStateEvent> for TypedPStateEvent<T>
impl<T: DeserializeOwned> TryFrom<PStateEvent> for TypedPStateEvent<T>
impl Eq for PStateEvent
impl StructuralPartialEq for PStateEvent
Auto Trait Implementations§
impl Freeze for PStateEvent
impl RefUnwindSafe for PStateEvent
impl Send for PStateEvent
impl Sync for PStateEvent
impl Unpin for PStateEvent
impl UnwindSafe for PStateEvent
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