referrerpolicy=no-referrer-when-downgrade
frame_support::traits

Trait FilterStack

Source
pub trait FilterStack<T>: Contains<T> {
    type Stack;

    // Required methods
    fn push(constraint: impl Fn(&T) -> bool + 'static);
    fn pop();
    fn take() -> Self::Stack;
    fn restore(taken: Self::Stack);
}
Expand description

Trait to add a constraint onto the filter.

Required Associated Types§

Source

type Stack

The type used to archive the stack.

Required Methods§

Source

fn push(constraint: impl Fn(&T) -> bool + 'static)

Add a new constraint onto the filter.

Source

fn pop()

Removes the most recently pushed, and not-yet-popped, constraint from the filter.

Source

fn take() -> Self::Stack

Clear the filter, returning a value that may be used later to restore it.

Source

fn restore(taken: Self::Stack)

Restore the filter from a previous take operation.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§