Trait InitialMatch

Source
pub trait InitialMatch {
    // Provided methods
    fn cancel_request<'a>(&mut self) -> Option<impl FnMut(CancelRequest<'a>)> { ... }
    fn g_s_s_e_n_c_request<'a>(
        &mut self,
    ) -> Option<impl FnMut(GSSENCRequest<'a>)> { ... }
    fn s_s_l_request<'a>(&mut self) -> Option<impl FnMut(SSLRequest<'a>)> { ... }
    fn startup_message<'a>(&mut self) -> Option<impl FnMut(StartupMessage<'a>)> { ... }
}

Provided Methods§

Source

fn cancel_request<'a>(&mut self) -> Option<impl FnMut(CancelRequest<'a>)>

Source

fn g_s_s_e_n_c_request<'a>(&mut self) -> Option<impl FnMut(GSSENCRequest<'a>)>

Source

fn s_s_l_request<'a>(&mut self) -> Option<impl FnMut(SSLRequest<'a>)>

Source

fn startup_message<'a>(&mut self) -> Option<impl FnMut(StartupMessage<'a>)>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§