pub trait FormatterImplExt: Sealed + ObjectSubclass {
    // Provided methods
    fn parent_can_load_uri(&self, uri: &str) -> Result<(), Error> { ... }
    fn parent_load_from_uri(
        &self,
        timeline: &Timeline,
        uri: &str
    ) -> Result<(), Error> { ... }
    fn parent_save_to_uri(
        &self,
        timeline: &Timeline,
        uri: &str,
        overwrite: bool
    ) -> Result<(), Error> { ... }
}

Provided Methods§

source

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

source

fn parent_load_from_uri( &self, timeline: &Timeline, uri: &str ) -> Result<(), Error>

source

fn parent_save_to_uri( &self, timeline: &Timeline, uri: &str, overwrite: bool ) -> Result<(), Error>

Object Safety§

This trait is not object safe.

Implementors§