pub struct StreamError {
pub message: String,
pub category: StreamErrorCategory,
pub recoverable: bool,
pub items_affected: Option<usize>,
}Expand description
Error during streaming (non-fatal).
Fields§
§message: StringError message.
category: StreamErrorCategoryError category.
recoverable: boolWhether the error is recoverable.
items_affected: Option<usize>Number of items affected.
Implementations§
Source§impl StreamError
impl StreamError
Sourcepub fn new(message: impl Into<String>, category: StreamErrorCategory) -> Self
pub fn new(message: impl Into<String>, category: StreamErrorCategory) -> Self
Creates a new stream error.
Sourcepub fn non_recoverable(self) -> Self
pub fn non_recoverable(self) -> Self
Marks this error as non-recoverable.
Sourcepub fn with_affected_items(self, count: usize) -> Self
pub fn with_affected_items(self, count: usize) -> Self
Sets the number of affected items.
Trait Implementations§
Source§impl Clone for StreamError
impl Clone for StreamError
Source§fn clone(&self) -> StreamError
fn clone(&self) -> StreamError
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 StreamError
impl Debug for StreamError
Source§impl<'de> Deserialize<'de> for StreamError
impl<'de> Deserialize<'de> for StreamError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for StreamError
impl Display for StreamError
Source§impl Error for StreamError
impl Error for StreamError
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 StreamError
impl RefUnwindSafe for StreamError
impl Send for StreamError
impl Sync for StreamError
impl Unpin for StreamError
impl UnsafeUnpin for StreamError
impl UnwindSafe for StreamError
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