Trait SearchType

Source
pub trait SearchType: Default {
    // Required method
    fn specialised_params(
        &self,
        spelling_mode: &SpellingMode,
    ) -> Option<Cow<'_, str>>;
}

Required Methods§

Source

fn specialised_params( &self, spelling_mode: &SpellingMode, ) -> Option<Cow<'_, str>>

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§