[][src]Trait liquid_error::ResultLiquidReplaceExt

pub trait ResultLiquidReplaceExt<T> {
    fn lossy_chain<S: Into<KString>>(self, msg: S) -> Result<T>;
fn lossy_chain_with<F>(self, msg: F) -> Result<T>
    where
        F: FnOnce() -> KString
;
fn replace<S: Into<KString>>(self, msg: S) -> Result<T>;
fn replace_with<F>(self, msg: F) -> Result<T>
    where
        F: FnOnce() -> KString
; }

Result extension methods for adapting third party errors to Error.

Required methods

fn lossy_chain<S: Into<KString>>(self, msg: S) -> Result<T>

Create an Error ignoring E as the cause.

Example

use std::io;
use liquid_error::Result;
use liquid_error::ResultLiquidReplaceExt;

let error = Err(io::Error::new(io::ErrorKind::NotFound, "Oops"));
let error: Result<i32> = error.lossy_chain("Missing liquid partial");

fn lossy_chain_with<F>(self, msg: F) -> Result<T> where
    F: FnOnce() -> KString

Create an Error ignoring E as the cause.

Example

use std::io;
use liquid_error::Result;
use liquid_error::ResultLiquidReplaceExt;

let filename = "foo";
let error = Err(io::Error::new(io::ErrorKind::NotFound, "Oops"));
let error: Result<i32> = error
    .lossy_chain_with(|| format!("Missing liquid partial: {}", filename).into());

fn replace<S: Into<KString>>(self, msg: S) -> Result<T>

Create an Error ignoring E as the cause.

Example

use std::io;
use liquid_error::Result;
use liquid_error::ResultLiquidReplaceExt;

let error = Err(io::Error::new(io::ErrorKind::NotFound, "Oops"));
let error: Result<i32> = error.replace("Missing liquid partial");

fn replace_with<F>(self, msg: F) -> Result<T> where
    F: FnOnce() -> KString

Create an Error ignoring E as the cause.

Example

use std::io;
use liquid_error::Result;
use liquid_error::ResultLiquidReplaceExt;

let filename = "foo";
let error = Err(io::Error::new(io::ErrorKind::NotFound, "Oops"));
let error: Result<i32> = error
    .replace_with(|| format!("Missing liquid partial: {}", filename).into());
Loading content...

Implementations on Foreign Types

impl<T, E> ResultLiquidReplaceExt<T> for Result<T, E> where
    E: Error + Send + Sync + 'static, 
[src]

Loading content...

Implementors

Loading content...