aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/generator.rs
diff options
context:
space:
mode:
authorLibravatar Anthony Nowell <anowell@gmail.com>2017-08-13 02:34:45 -0600
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2017-08-13 10:43:34 +0200
commit0b814fd0fa22273a3e03664337d62de883cc5047 (patch)
tree0dab9a0201c99c241fc0a88e17d4294c46d4374c /askama_derive/src/generator.rs
parent8bda0d64d5a7e8e9fcb74283b4493df406e11c13 (diff)
downloadaskama-0b814fd0fa22273a3e03664337d62de883cc5047.tar.gz
askama-0b814fd0fa22273a3e03664337d62de883cc5047.tar.bz2
askama-0b814fd0fa22273a3e03664337d62de883cc5047.zip
Generate with full path to Result
Diffstat (limited to 'askama_derive/src/generator.rs')
-rw-r--r--askama_derive/src/generator.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs
index 772e438..77d338d 100644
--- a/askama_derive/src/generator.rs
+++ b/askama_derive/src/generator.rs
@@ -368,7 +368,7 @@ impl<'a> Generator<'a> {
self.writeln("#[allow(unused_variables)]");
self.writeln(&format!(
"fn render_block_{}_into(&self, writer: &mut ::std::fmt::Write) \
- -> Result<(), ::std::fmt::Error> {{",
+ -> ::std::result::Result<(), ::std::fmt::Error> {{",
name));
self.prepare_ws(ws1);
self.handle(nodes);
@@ -470,7 +470,7 @@ impl<'a> Generator<'a> {
fn impl_template(&mut self, ast: &syn::DeriveInput, nodes: &'a [Node]) {
self.write_header(ast, "::askama::Template");
self.writeln("fn render_into(&self, writer: &mut ::std::fmt::Write) -> \
- Result<(), ::std::fmt::Error> {");
+ ::std::result::Result<(), ::std::fmt::Error> {");
self.handle(nodes);
self.flush_ws(&WS(false, false));
self.writeln("Ok(())");
@@ -481,7 +481,7 @@ impl<'a> Generator<'a> {
// Implement `Display` for the given context struct.
fn impl_display(&mut self, ast: &syn::DeriveInput) {
self.write_header(ast, "::std::fmt::Display");
- self.writeln("fn fmt(&self, f: &mut ::std::fmt::Formatter) -> Result<(), ::std::fmt::Error> {");
+ self.writeln("fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::result::Result<(), ::std::fmt::Error> {");
self.writeln("self.render_into(f)");
self.writeln("}");
self.writeln("}");
@@ -508,7 +508,7 @@ impl<'a> Generator<'a> {
self.writeln("#[allow(unused_variables)]");
self.writeln(&format!(
"fn render_trait_into(&self, timpl: &{}, writer: &mut ::std::fmt::Write) \
- -> Result<(), ::std::fmt::Error> {{",
+ -> ::std::result::Result<(), ::std::fmt::Error> {{",
trait_name));
if let Some(nodes) = nodes {
@@ -528,7 +528,7 @@ impl<'a> Generator<'a> {
fn impl_template_for_trait(&mut self, ast: &syn::DeriveInput, derived: bool) {
self.write_header(ast, "::askama::Template");
self.writeln("fn render_into(&self, writer: &mut ::std::fmt::Write) \
- -> Result<(), ::std::fmt::Error> {");
+ -> ::std::result::Result<(), ::std::fmt::Error> {");
if derived {
self.writeln("self._parent.render_trait_into(self, writer)?;");
} else {
@@ -546,12 +546,12 @@ impl<'a> Generator<'a> {
for bname in block_names {
self.writeln(&format!(
"fn render_block_{}_into(&self, writer: &mut ::std::fmt::Write) \
- -> Result<(), ::std::fmt::Error>;",
+ -> ::std::result::Result<(), ::std::fmt::Error>;",
bname));
}
self.writeln(&format!(
"fn render_trait_into(&self, timpl: &{}, writer: &mut ::std::fmt::Write) \
- -> Result<(), ::std::fmt::Error>;",
+ -> ::std::result::Result<(), ::std::fmt::Error>;",
trait_name));
self.writeln("}");
}