pub enum WriteStatus {
Ok,
OkOverridden,
}Expand description
WriteStatus
JSON schema
{
"type": "string",
"enum": [
"ok",
"okOverridden"
]
}Variants§
Trait Implementations§
Source§impl Clone for WriteStatus
impl Clone for WriteStatus
Source§fn clone(&self) -> WriteStatus
fn clone(&self) -> WriteStatus
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 moreSource§impl Debug for WriteStatus
impl Debug for WriteStatus
Source§impl<'de> Deserialize<'de> for WriteStatus
impl<'de> Deserialize<'de> for WriteStatus
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 WriteStatus
impl Display for WriteStatus
Source§impl FromStr for WriteStatus
impl FromStr for WriteStatus
Source§impl Hash for WriteStatus
impl Hash for WriteStatus
Source§impl Ord for WriteStatus
impl Ord for WriteStatus
Source§fn cmp(&self, other: &WriteStatus) -> Ordering
fn cmp(&self, other: &WriteStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WriteStatus
impl PartialEq for WriteStatus
Source§fn eq(&self, other: &WriteStatus) -> bool
fn eq(&self, other: &WriteStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WriteStatus
impl PartialOrd for WriteStatus
Source§impl Serialize for WriteStatus
impl Serialize for WriteStatus
Source§impl TryFrom<&String> for WriteStatus
impl TryFrom<&String> for WriteStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for WriteStatus
impl TryFrom<&str> for WriteStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for WriteStatus
impl TryFrom<String> for WriteStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for WriteStatus
impl Eq for WriteStatus
impl StructuralPartialEq for WriteStatus
Auto Trait Implementations§
impl Freeze for WriteStatus
impl RefUnwindSafe for WriteStatus
impl Send for WriteStatus
impl Sync for WriteStatus
impl Unpin for WriteStatus
impl UnsafeUnpin for WriteStatus
impl UnwindSafe for WriteStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.