Enum ntex_h2::OperationError
source · [−]pub enum OperationError {
Stream(StreamError),
Connection(ConnectionError),
Idle,
Payload,
PingTimeout,
Closed(Option<Reason>),
RemoteReset(Reason),
LocalReset(Reason),
OverflowedStreamId,
Disconnected,
}Expand description
Operation errors
Variants
Stream(StreamError)
Connection(ConnectionError)
Idle
Cannot process operation for idle stream
Payload
Cannot process operation for stream in payload state
PingTimeout
Ping timeout
Closed(Option<Reason>)
Stream is closed
RemoteReset(Reason)
Stream has been reset from the peer
LocalReset(Reason)
Stream has been reset from local side
OverflowedStreamId
The stream ID space is overflowed
A new connection is needed.
Disconnected
Disconnected
Trait Implementations
sourceimpl Clone for OperationError
impl Clone for OperationError
sourcefn clone(&self) -> OperationError
fn clone(&self) -> OperationError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for OperationError
impl Debug for OperationError
sourceimpl Display for OperationError
impl Display for OperationError
sourceimpl Error for OperationError
impl Error for OperationError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<ConnectionError> for OperationError
impl From<ConnectionError> for OperationError
sourcefn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
sourceimpl From<StreamError> for OperationError
impl From<StreamError> for OperationError
sourcefn from(source: StreamError) -> Self
fn from(source: StreamError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for OperationError
impl Send for OperationError
impl Sync for OperationError
impl Unpin for OperationError
impl UnwindSafe for OperationError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more