pub trait FormatterImpl:
ObjectImpl
+ ObjectSubclass<Type: IsA<Formatter>>
+ 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§
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.