Merge pull request #184 from LukasKalbertodt/master

Add `From<ProtocolError>` impl for `Error`
pull/186/head
Daniel Abramov 3 years ago committed by GitHub
commit 3721ca8d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/error.rs

@ -51,7 +51,7 @@ pub enum Error {
Capacity(CapacityError),
/// Protocol violation.
#[error("WebSocket protocol error: {0}")]
Protocol(ProtocolError),
Protocol(#[from] ProtocolError),
/// Message send queue full.
#[error("Send queue is full")]
SendQueueFull(Message),

Loading…
Cancel
Save