Enum async_proto::ReadError [−][src]
pub enum ReadError {
BufSize(TryFromIntError),
Custom(String),
EndOfStream,
FloatNotFinite,
Io(Arc<Error>),
ReadNever,
Tungstenite(Arc<Error>),
UnknownVariant(u8),
Utf8(FromUtf8Error),
Warp(Arc<Error>),
}
Variants
BufSize(TryFromIntError)
Received a buffer with more than usize::MAX
elements
Tuple Fields of BufSize
Custom(String)
An error variant you can use when manually implementing Protocol
Tuple Fields of Custom
0: String
The end of the stream was encountered before a complete value was read.
Note that this error condition may also be represented as a ReadError::Io
with kind
UnexpectedEof
.
This is supported on crate feature
serde_json
only.Attempted to read an empty type
Tungstenite(Arc<Error>)
This is supported on crate feature
tokio-tungstenite
only.Tuple Fields of Tungstenite
0: Arc<Error>
UnknownVariant(u8)
Tuple Fields of UnknownVariant
0: u8
Utf8(FromUtf8Error)
Tuple Fields of Utf8
This is supported on crate feature
warp
only.Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for ReadError
impl !UnwindSafe for ReadError
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more