pub enum FlushError<SE>{
Store(SE),
Ingest(IngestServiceError),
}Expand description
Error returned by OfflineBuffer::flush.
Variants§
Store(SE)
Ingest(IngestServiceError)
Trait Implementations§
Source§impl<SE> Debug for FlushError<SE>
impl<SE> Debug for FlushError<SE>
Source§impl<SE> Display for FlushError<SE>
impl<SE> Display for FlushError<SE>
Source§impl<SE> Error for FlushError<SE>
impl<SE> Error for FlushError<SE>
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<SE> Freeze for FlushError<SE>where
SE: Freeze,
impl<SE> RefUnwindSafe for FlushError<SE>where
SE: RefUnwindSafe,
impl<SE> Send for FlushError<SE>
impl<SE> Sync for FlushError<SE>
impl<SE> Unpin for FlushError<SE>where
SE: Unpin,
impl<SE> UnsafeUnpin for FlushError<SE>where
SE: UnsafeUnpin,
impl<SE> UnwindSafe for FlushError<SE>where
SE: UnwindSafe,
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