Trait upon::filters::FilterArgs

source ·
pub trait FilterArgs { }
Available on crate feature filters only.
Expand description

The set of arguments to a filter.

See the module documentation for more information.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<V> FilterArgs for (V,)
where V: FilterArg,

source§

impl<V, A> FilterArgs for (V, A)
where V: FilterArg, A: FilterArg,

source§

impl<V, A, B> FilterArgs for (V, A, B)
where V: FilterArg, A: FilterArg, B: FilterArg,

source§

impl<V, A, B, C> FilterArgs for (V, A, B, C)
where V: FilterArg, A: FilterArg, B: FilterArg, C: FilterArg,

source§

impl<V, A, B, C, D> FilterArgs for (V, A, B, C, D)
where V: FilterArg, A: FilterArg, B: FilterArg, C: FilterArg, D: FilterArg,

Implementors§