pub trait Exportable {
// Required methods
fn export_from_object(object: EbiObject, f: &mut dyn Write) -> Result<()>;
fn export(&self, f: &mut dyn Write) -> Result<()>;
}Required Methods§
fn export_from_object(object: EbiObject, f: &mut dyn Write) -> Result<()>
fn export(&self, f: &mut dyn Write) -> Result<()>
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.