Skip to main content

LogWebSocketReturn

Trait LogWebSocketReturn 

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

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl LogWebSocketReturn for ()

Source§

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

Implementors§