pub enum ErrorEffect {
None,
Unknown,
}Expand description
State mutation certainty reported by an operation error.
Variants§
None
This operation (or failed batch entry) did not change state.
Unknown
A change cannot be ruled out.
Trait Implementations§
Source§impl Clone for ErrorEffect
impl Clone for ErrorEffect
Source§fn clone(&self) -> ErrorEffect
fn clone(&self) -> ErrorEffect
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 ErrorEffect
Source§impl Debug for ErrorEffect
impl Debug for ErrorEffect
Source§impl<'de> Deserialize<'de> for ErrorEffect
impl<'de> Deserialize<'de> for ErrorEffect
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
impl Eq for ErrorEffect
Source§impl PartialEq for ErrorEffect
impl PartialEq for ErrorEffect
Source§impl Serialize for ErrorEffect
impl Serialize for ErrorEffect
impl StructuralPartialEq for ErrorEffect
Auto Trait Implementations§
impl Freeze for ErrorEffect
impl RefUnwindSafe for ErrorEffect
impl Send for ErrorEffect
impl Sync for ErrorEffect
impl Unpin for ErrorEffect
impl UnsafeUnpin for ErrorEffect
impl UnwindSafe for ErrorEffect
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