pub enum ReducerKind {
LastWriteWins,
Append,
Add,
Merge,
}Variants§
Trait Implementations§
Source§impl Clone for ReducerKind
impl Clone for ReducerKind
Source§fn clone(&self) -> ReducerKind
fn clone(&self) -> ReducerKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ReducerKind
Source§impl Debug for ReducerKind
impl Debug for ReducerKind
Source§impl<'de> Deserialize<'de> for ReducerKind
impl<'de> Deserialize<'de> for ReducerKind
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
Auto Trait Implementations§
impl Freeze for ReducerKind
impl RefUnwindSafe for ReducerKind
impl Send for ReducerKind
impl Sync for ReducerKind
impl Unpin for ReducerKind
impl UnsafeUnpin for ReducerKind
impl UnwindSafe for ReducerKind
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