1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use twiml::*;
use xml::{
writer::{EventWriter, XmlEvent},
EmitterConfig,
};
#[derive(Debug)]
pub struct Hangup;
impl Hangup {
pub fn new() -> Self {
Hangup
}
}
impl Twiml for Hangup {
fn write<W: Write>(&self, w: &mut EventWriter<W>) -> TwilioResult<()> {
w.write(XmlEvent::start_element("Hangup"))?;
w.write(XmlEvent::end_element())?;
Ok(())
}
fn build(&self) -> TwilioResult<String> {
let mut writer = Vec::with_capacity(30);
{
let mut w = EmitterConfig::new()
.write_document_declaration(false)
.create_writer(&mut writer);
self.write(&mut w)?;
}
Ok(String::from_utf8(writer)?)
}
}