[][src]Enum pharos::Filter

pub enum Filter<Event> where
    Event: Clone + 'static + Send
{ Pointer(fn(_: &Event) -> bool), Closure(Box<dyn FnMut(&Event) -> bool + Send>), }

Predicate for filtering events. This is an enum because closures that capture variables from their environment need to be boxed. More often than not, an event will be a simple enum and the predicate will just match on the variant, so it would be wasteful to impose boxing in those cases, hence there is a function pointer variant which does not require boxing. This should be preferred where possible.

use pharos::*;

let a = 5;

// This closure captures the a variable from it's environment.
// We can still use it as a filter by boxing it with `closure`.
//
// Note: it depends on the circumstances, but often enough, we need to
// annotate the type of the event parameter to the predicate.
//
// For this example we use bool as event type for simplicity, but it works
// just the same if that's an enum.
//
let predicate = move |_: &bool| { a; true };

let filter = Filter::Closure( Box::new(predicate) );

// This one does not capture anything, so it can be stored as a function pointer
// without boxing.
//
let predicate = move |_: &bool| { true };

let filter = Filter::Pointer( predicate );

// You can also use actual functions as filters.
//
fn predicate_function( event: &bool ) -> bool { true }

let filter = Filter::Pointer( predicate_function );

Variants

Pointer(fn(_: &Event) -> bool)

A function pointer to use to filter events.

Closure(Box<dyn FnMut(&Event) -> bool + Send>)

A boxed closure to use to filter events.

Trait Implementations

impl<Event> From<Filter<Event>> for ObserveConfig<Event> where
    Event: Clone + 'static + Send
[src]

Create a ObserveConfig from a Filter, getting default values for other options.

impl<Event> Debug for Filter<Event> where
    Event: Clone + 'static + Send
[src]

Auto Trait Implementations

impl<Event> Send for Filter<Event>

impl<Event> Unpin for Filter<Event>

impl<Event> !Sync for Filter<Event>

impl<Event> !UnwindSafe for Filter<Event>

impl<Event> !RefUnwindSafe for Filter<Event>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,