pub enum AddDropSync {
ADD,
DROP,
SYNC,
}
Variants
ADD
DROP
SYNC
Trait Implementations
impl Clone for AddDropSync
impl Clone for AddDropSync
fn clone(&self) -> AddDropSync
fn clone(&self) -> AddDropSync
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for AddDropSync
impl Debug for AddDropSync
impl<'de> Deserialize<'de> for AddDropSync
impl<'de> Deserialize<'de> for AddDropSync
fn deserialize<__D>(
__deserializer: __D
) -> Result<AddDropSync, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<AddDropSync, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Display for AddDropSync
impl Display for AddDropSync
impl Hash for AddDropSync
impl Hash for AddDropSync
impl PartialEq<AddDropSync> for AddDropSync
impl PartialEq<AddDropSync> for AddDropSync
fn eq(&self, other: &AddDropSync) -> bool
fn eq(&self, other: &AddDropSync) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Serialize for AddDropSync
impl Serialize for AddDropSync
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for AddDropSync
impl StructuralEq for AddDropSync
impl StructuralPartialEq for AddDropSync
Auto Trait Implementations
impl RefUnwindSafe for AddDropSync
impl Send for AddDropSync
impl Sync for AddDropSync
impl Unpin for AddDropSync
impl UnwindSafe for AddDropSync
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.