pub trait FormatterExt: IsA<Formatter> + 'static {
// Provided methods
fn load_from_uri(
&self,
timeline: &impl IsA<Timeline>,
uri: &str,
) -> Result<(), Error> { ... }
fn save_to_uri(
&self,
timeline: &impl IsA<Timeline>,
uri: &str,
overwrite: bool,
) -> Result<(), Error> { ... }
}
Provided Methods§
Sourcefn load_from_uri(
&self,
timeline: &impl IsA<Timeline>,
uri: &str,
) -> Result<(), Error>
👎Deprecated: Since 1.18
fn load_from_uri( &self, timeline: &impl IsA<Timeline>, uri: &str, ) -> 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.