pub enum TempStoreError {
Io(String),
}Expand description
Why a spill operation could not proceed. The host maps its own I/O
errors into Io; the engine only ever reports them upward.
Variants§
Io(String)
The host’s storage refused the operation (disk full, permissions, the temp directory vanished mid-query).
Trait Implementations§
Source§impl Clone for TempStoreError
impl Clone for TempStoreError
Source§fn clone(&self) -> TempStoreError
fn clone(&self) -> TempStoreError
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 TempStoreError
impl Debug for TempStoreError
Source§impl Display for TempStoreError
impl Display for TempStoreError
impl Eq for TempStoreError
Source§impl PartialEq for TempStoreError
impl PartialEq for TempStoreError
impl StructuralPartialEq for TempStoreError
Auto Trait Implementations§
impl Freeze for TempStoreError
impl RefUnwindSafe for TempStoreError
impl Send for TempStoreError
impl Sync for TempStoreError
impl Unpin for TempStoreError
impl UnsafeUnpin for TempStoreError
impl UnwindSafe for TempStoreError
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