Enum h3_quinn::WriteError
source · pub enum WriteError {
Stopped(VarInt),
ConnectionLost(ConnectionError),
ClosedStream,
ZeroRttRejected,
}
Expand description
Errors that arise from writing to a stream
Variants§
Stopped(VarInt)
The peer is no longer accepting data on this stream
Carries an application-defined error code.
ConnectionLost(ConnectionError)
The connection was lost
ClosedStream
The stream has already been finished or reset
ZeroRttRejected
This was a 0-RTT stream and the server rejected it
Can only occur on clients for 0-RTT streams, which can be opened using
Connecting::into_0rtt()
.
Trait Implementations§
source§impl Clone for WriteError
impl Clone for WriteError
source§fn clone(&self) -> WriteError
fn clone(&self) -> WriteError
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 WriteError
impl Debug for WriteError
source§impl Display for WriteError
impl Display for WriteError
source§impl Error for WriteError
impl Error for WriteError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ClosedStream> for WriteError
impl From<ClosedStream> for WriteError
source§fn from(_: ClosedStream) -> WriteError
fn from(_: ClosedStream) -> WriteError
Converts to this type from the input type.
source§impl From<ConnectionError> for WriteError
impl From<ConnectionError> for WriteError
source§fn from(source: ConnectionError) -> WriteError
fn from(source: ConnectionError) -> WriteError
Converts to this type from the input type.
source§impl From<StoppedError> for WriteError
impl From<StoppedError> for WriteError
source§fn from(x: StoppedError) -> WriteError
fn from(x: StoppedError) -> WriteError
Converts to this type from the input type.
source§impl From<WriteError> for SendStreamError
impl From<WriteError> for SendStreamError
source§fn from(e: WriteError) -> Self
fn from(e: WriteError) -> Self
Converts to this type from the input type.
source§impl PartialEq for WriteError
impl PartialEq for WriteError
source§fn eq(&self, other: &WriteError) -> bool
fn eq(&self, other: &WriteError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for WriteError
impl StructuralPartialEq for WriteError
Auto Trait Implementations§
impl !Freeze for WriteError
impl RefUnwindSafe for WriteError
impl Send for WriteError
impl Sync for WriteError
impl Unpin for WriteError
impl UnwindSafe for WriteError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)