pub trait FormatterExtManual: Sealed + IsA<Formatter> + 'static {
    // Provided methods
    fn can_load_uri(&self, uri: &str) -> Result<(), Error> { ... }
    fn register(
        type_: Type,
        name: &str,
        description: Option<&str>,
        extensions: Option<&str>,
        caps: Option<&str>,
        version: f64,
        rank: Rank
    ) { ... }
}

Provided Methods§

source

fn can_load_uri(&self, uri: &str) -> Result<(), Error>

source

fn register( type_: Type, name: &str, description: Option<&str>, extensions: Option<&str>, caps: Option<&str>, version: f64, rank: Rank )

Object Safety§

This trait is not object safe.

Implementors§