pub enum OperationError {
Stream(StreamError),
Connection(ConnectionError),
Idle,
Payload,
Closed(Option<Reason>),
RemoteReset(Reason),
LocalReset(Reason),
OverflowedStreamId,
Disconnecting,
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
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.
Disconnecting
Disconnecting
Disconnected
Disconnected
Trait Implementations§
Source§impl Clone for OperationError
impl Clone for OperationError
Source§fn clone(&self) -> OperationError
fn clone(&self) -> OperationError
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 OperationError
impl Debug for OperationError
Source§impl Display for OperationError
impl Display for OperationError
Source§impl Error for OperationError
impl Error for OperationError
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()
Source§impl From<ConnectionError> for OperationError
impl From<ConnectionError> for OperationError
Source§fn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
Source§impl From<OperationError> for ClientError
impl From<OperationError> for ClientError
Source§fn from(source: OperationError) -> Self
fn from(source: OperationError) -> Self
Converts to this type from the input type.
Source§impl From<StreamError> for OperationError
impl From<StreamError> for OperationError
Source§fn from(source: StreamError) -> Self
fn from(source: StreamError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationError
impl RefUnwindSafe for OperationError
impl Send for OperationError
impl Sync for OperationError
impl Unpin for OperationError
impl UnwindSafe for OperationError
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