pub trait FormatterExt:
IsA<Formatter>
+ Sealed
+ '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>
Object Safety§
This trait is not object safe.