pub trait LogWebSocketReturn: Debug {
    // Required method
    fn should_log_error(&self) -> bool;
}
Available on crate feature ws only.

Required Methods§

Implementations on Foreign Types§

source§

impl LogWebSocketReturn for ()

source§

impl<T, E> LogWebSocketReturn for Result<T, E>where T: Debug, E: Debug,

Implementors§