pub trait ConnectionExt<'a>: Connection {
// Provided methods
fn is_forking_supervisable(&'a mut self) -> Self::Invoke<'a, bool> { ... }
fn dump(&'a mut self) -> Self::Invoke<'a, String> { ... }
}Expand description
An extension trait to provide debug.* API invocation.
Provided Methods§
fn is_forking_supervisable(&'a mut self) -> Self::Invoke<'a, bool>
fn dump(&'a mut self) -> Self::Invoke<'a, String>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".