pub trait FormatterImpl:
FormatterImplExt
+ ObjectImpl
+ Send
+ Sync {
// Provided methods
fn can_load_uri(&self, uri: &str) -> Result<(), Error> { ... }
fn load_from_uri(&self, timeline: &Timeline, uri: &str) -> Result<(), Error> { ... }
fn save_to_uri(
&self,
timeline: &Timeline,
uri: &str,
overwrite: bool,
) -> Result<(), Error> { ... }
}
Provided Methods§
Object Safety§
This trait is not object safe.