pub trait ToWXF {
// Required method
fn to_wxf<W>(&self, w: &mut WxfWriter<W>) -> Result<(), Error>
where W: Writer;
}Expand description
Types that know how to serialize themselves into a WXF stream.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".