[−][src]Struct mongodb_cwal::coll::error::WriteException
The error type for Write-related MongoDB operations.
Fields
write_concern_error: Option<WriteConcernError>
write_error: Option<WriteError>
message: String
Implementations
impl WriteException
[src]
pub fn new(
wc_err: Option<WriteConcernError>,
w_err: Option<WriteError>
) -> WriteException
[src]
wc_err: Option<WriteConcernError>,
w_err: Option<WriteError>
) -> WriteException
Returns a new WriteException containing the given errors.
pub fn with_bulk_exception(bulk_exception: BulkWriteException) -> WriteException
[src]
Downgrades a BulkWriteException into a WriteException, retrieving the last write error to emulate the behavior of continue_on_error.
pub fn validate_write_result(
result: Document,
write_concern: WriteConcern
) -> Result<()>
[src]
result: Document,
write_concern: WriteConcern
) -> Result<()>
Validates a single-write result.
Trait Implementations
impl Clone for WriteException
[src]
fn clone(&self) -> WriteException
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for WriteException
[src]
impl Display for WriteException
[src]
impl Error for WriteException
[src]
fn description(&self) -> &str
[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl From<WriteException> for Error
[src]
fn from(err: WriteException) -> Error
[src]
impl PartialEq<WriteException> for WriteException
[src]
fn eq(&self, other: &WriteException) -> bool
[src]
fn ne(&self, other: &WriteException) -> bool
[src]
impl StructuralPartialEq for WriteException
[src]
Auto Trait Implementations
impl RefUnwindSafe for WriteException
impl Send for WriteException
impl Sync for WriteException
impl Unpin for WriteException
impl UnwindSafe for WriteException
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> AsFail for T where
T: Fail,
T: Fail,
fn as_fail(&self) -> &(dyn Fail + 'static)
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<E> Fail for E where
E: 'static + Error + Send + Sync,
E: 'static + Error + Send + Sync,
fn name(&self) -> Option<&str>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn backtrace(&self) -> Option<&Backtrace>
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
D: Display + Send + Sync + 'static,
fn compat(self) -> Compat<Self>
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,