style(all): rustfmt and clippy

This commit is contained in:
Alexis Mousset
2018-03-20 10:44:41 +01:00
parent d7a8574464
commit e024806402

View File

@@ -662,7 +662,10 @@ impl EmailBuilder {
pub fn set_html<S: Into<String>>(&mut self, body: S) { pub fn set_html<S: Into<String>>(&mut self, body: S) {
let html = PartBuilder::new() let html = PartBuilder::new()
.body(body) .body(body)
.header(("Content-Type", format!("{}", mime::TEXT_HTML_UTF_8).as_ref())) .header((
"Content-Type",
format!("{}", mime::TEXT_HTML_UTF_8).as_ref(),
))
.build(); .build();
self.add_child(html); self.add_child(html);
} }
@@ -696,7 +699,10 @@ impl EmailBuilder {
let html = PartBuilder::new() let html = PartBuilder::new()
.body(body_html) .body(body_html)
.header(("Content-Type", format!("{}", mime::TEXT_HTML_UTF_8).as_ref())) .header((
"Content-Type",
format!("{}", mime::TEXT_HTML_UTF_8).as_ref(),
))
.build(); .build();
alternate.add_child(text); alternate.add_child(text);
@@ -832,8 +838,8 @@ impl EmailBuilder {
Ok(Email { Ok(Email {
message: self.message.build().as_string().into_bytes(), message: self.message.build().as_string().into_bytes(),
envelope: envelope, envelope,
message_id: message_id, message_id,
}) })
} }
} }