[−][src]Trait frame_support::traits::FilterStack
Trait to add a constraint onto the filter.
Associated Types
Required methods
fn push(constraint: impl Fn(&T) -> bool + 'static)[−]
Add a new constraint onto the filter.
fn pop()[−]
Removes the most recently pushed, and not-yet-popped, constraint from the filter.
fn take() -> Self::Stack[−]
Clear the filter, returning a value that may be used later to restore it.
fn restore(taken: Self::Stack)[−]
Restore the filter from a previous take operation.