Skip to main content

ConnectionExt

Trait ConnectionExt 

Source
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§

Source

fn is_forking_supervisable(&'a mut self) -> Self::Invoke<'a, bool>

Source

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".

Implementors§

Source§

impl<T> ConnectionExt<'_> for T
where T: Connection,