pub trait Twiml {
// Required methods
fn write<W>(&self, w: &mut EventWriter<W>) -> Result<(), TwimlErr>
where W: Write;
fn build(&self) -> Result<String, TwimlErr>;
}
Required Methods§
fn write<W>(&self, w: &mut EventWriter<W>) -> Result<(), TwimlErr>where
W: Write,
fn build(&self) -> Result<String, TwimlErr>
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.