Enum salvo_http3::error::ErrorLevel
source · pub enum ErrorLevel {
ConnectionError,
StreamError,
}Expand description
Some errors affect the whole connection, others only one Request or Stream. See errors for mor details.
Variants§
ConnectionError
Error that will close the whole connection
StreamError
Error scoped to a single stream
Trait Implementations§
source§impl Clone for ErrorLevel
impl Clone for ErrorLevel
source§fn clone(&self) -> ErrorLevel
fn clone(&self) -> ErrorLevel
Returns a copy 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 ErrorLevel
impl Debug for ErrorLevel
source§impl Hash for ErrorLevel
impl Hash for ErrorLevel
source§impl PartialEq<ErrorLevel> for ErrorLevel
impl PartialEq<ErrorLevel> for ErrorLevel
source§fn eq(&self, other: &ErrorLevel) -> bool
fn eq(&self, other: &ErrorLevel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for ErrorLevel
impl Eq for ErrorLevel
impl StructuralEq for ErrorLevel
impl StructuralPartialEq for ErrorLevel
Auto Trait Implementations§
impl RefUnwindSafe for ErrorLevel
impl Send for ErrorLevel
impl Sync for ErrorLevel
impl Unpin for ErrorLevel
impl UnwindSafe for ErrorLevel
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