pub trait FormatterImplExt: FormatterImpl {
// 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§
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>
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.