pub trait OnFailedUpdgrade: Send + 'static {
    fn call(self, error: Error);
}
Available on crate feature ws only.
Expand description

What to do when a connection upgrade fails.

See WebSocketUpgrade::on_failed_upgrade for more details.

Required Methods§

Call the callback.

Implementors§