pub trait ContentLanguageSupport<'a> {
    type O;

    fn with_content_language(self, content_language: &'a str) -> Self::O;
}

Required Associated Types

Required Methods

Implementors