pub enum PartialReason {
CountLimit,
SizeLimit,
IoError(Error),
Utf8Error(Utf8Error),
}
Expand description
The reason the save operation quit partway through.
Variants§
CountLimit
The count limit for files in the request was hit.
The associated file has not been saved to the filesystem.
SizeLimit
The size limit for an individual file was hit.
The file was partially written to the filesystem.
IoError(Error)
An error occurred during the operation.
Utf8Error(Utf8Error)
An error returned from validating a field as UTF-8 due to SaveBuilder::force_text()
Implementations§
Source§impl PartialReason
impl PartialReason
Sourcepub fn unwrap_err(self) -> Error
pub fn unwrap_err(self) -> Error
Return io::Error
in the IoError
case or panic otherwise.
Sourcepub fn expect_err(self, msg: &str) -> Error
pub fn expect_err(self, msg: &str) -> Error
Return io::Error
in the IoError
case or panic with the given
message otherwise.
Trait Implementations§
Source§impl Debug for PartialReason
impl Debug for PartialReason
Source§impl From<Error> for PartialReason
impl From<Error> for PartialReason
Auto Trait Implementations§
impl Freeze for PartialReason
impl !RefUnwindSafe for PartialReason
impl Send for PartialReason
impl Sync for PartialReason
impl Unpin for PartialReason
impl !UnwindSafe for PartialReason
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