Enum quinn::WriteError
source · pub enum WriteError {
Stopped(VarInt),
ConnectionLost(ConnectionError),
UnknownStream,
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
UnknownStream
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<ConnectionError> for WriteError
impl From<ConnectionError> for WriteError
source§fn from(source: ConnectionError) -> Self
fn from(source: ConnectionError) -> Self
Converts to this type from the input type.
source§impl From<WriteError> for Error
impl From<WriteError> for Error
source§fn from(x: WriteError) -> Self
fn from(x: WriteError) -> Self
Converts to this type from the input type.