pub enum SpillError {
NotSupported,
IoError(String),
NoSpillDirectory,
InsufficientDiskSpace,
}Expand description
Error type for spilling operations.
Variants§
NotSupported
Spilling is not supported by this consumer.
IoError(String)
I/O error during spill.
NoSpillDirectory
Spill directory not configured.
InsufficientDiskSpace
Insufficient disk space.
Trait Implementations§
Source§impl Clone for SpillError
impl Clone for SpillError
Source§fn clone(&self) -> SpillError
fn clone(&self) -> SpillError
Returns a duplicate 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 SpillError
impl Debug for SpillError
Source§impl Display for SpillError
impl Display for SpillError
Source§impl Error for SpillError
impl Error for SpillError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SpillError
impl RefUnwindSafe for SpillError
impl Send for SpillError
impl Sync for SpillError
impl Unpin for SpillError
impl UnsafeUnpin for SpillError
impl UnwindSafe for SpillError
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