pub trait FilterReturn { }
Available on crate feature filters only.
Expand description

A return value from a filter.

This trait is implemented for many types by utilizing the From implementations for Value.

  • R where R implements Into<Value>
  • Result<R, E> where R implements Into<Value> and E implements FilterError.

See the module documentation for more information.

Implementations on Foreign Types§

source§

impl<T, E> FilterReturn for Result<T, E>
where T: Into<Value>, E: FilterError,

Implementors§

source§

impl<T> FilterReturn for T
where T: Into<Value>,