Trait FunctionResult

Source
pub trait FunctionResult { }
Expand description

A utility trait that represents the return value of functions, filters and tests.

It’s implemented for the following types:

  • Rv where Rv implements Into<AnyMapObject>
  • Result<Rv, Error> where Rv implements Into<Value>

Implementations on Foreign Types§

Source§

impl<I> FunctionResult for Result<I, Error>
where I: Into<Value>,

Implementors§

Source§

impl<I> FunctionResult for I
where I: Into<Value>,