Struct mongodb::error::WriteConcernError
source · #[non_exhaustive]pub struct WriteConcernError {
pub code: i32,
pub code_name: String,
pub message: String,
pub details: Option<Document>,
/* private fields */
}Expand description
An error that occurred due to not being able to satisfy a write concern.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code: i32Identifies the type of write concern error.
code_name: StringThe name associated with the error code.
message: StringA description of the error that occurred.
details: Option<Document>A document identifying the write concern setting related to the error.
Trait Implementations§
source§impl Clone for WriteConcernError
impl Clone for WriteConcernError
source§fn clone(&self) -> WriteConcernError
fn clone(&self) -> WriteConcernError
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 WriteConcernError
impl Debug for WriteConcernError
source§impl<'de> Deserialize<'de> for WriteConcernError
impl<'de> Deserialize<'de> for WriteConcernError
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 PartialEq<WriteConcernError> for WriteConcernError
impl PartialEq<WriteConcernError> for WriteConcernError
source§fn eq(&self, other: &WriteConcernError) -> bool
fn eq(&self, other: &WriteConcernError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.