pub enum StoreUpdate {
V0(StoreUpdateV0),
}
Variants§
V0(StoreUpdateV0)
Trait Implementations§
Source§impl Clone for StoreUpdate
impl Clone for StoreUpdate
Source§fn clone(&self) -> StoreUpdate
fn clone(&self) -> StoreUpdate
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 StoreUpdate
impl Debug for StoreUpdate
Source§impl<'de> Deserialize<'de> for StoreUpdate
impl<'de> Deserialize<'de> for StoreUpdate
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 Display for StoreUpdate
impl Display for StoreUpdate
Source§impl From<&Store> for StoreUpdate
impl From<&Store> for StoreUpdate
Source§fn from(s: &Store) -> StoreUpdate
fn from(s: &Store) -> StoreUpdate
Converts to this type from the input type.
Source§impl PartialEq for StoreUpdate
impl PartialEq for StoreUpdate
Source§impl Serialize for StoreUpdate
impl Serialize for StoreUpdate
impl Eq for StoreUpdate
impl StructuralPartialEq for StoreUpdate
Auto Trait Implementations§
impl Freeze for StoreUpdate
impl RefUnwindSafe for StoreUpdate
impl Send for StoreUpdate
impl Sync for StoreUpdate
impl Unpin for StoreUpdate
impl UnwindSafe for StoreUpdate
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