Trait tap::TapOptionOps

source ·
pub trait TapOptionOps<T> {
    fn tap_some<R, F: FnOnce(&mut T) -> R>(self, f: F) -> Self;
    fn tap_none<R, F: FnOnce() -> R>(self, f: F) -> Self;
}
Expand description

Tap operations for Option.

Required Methods§

Executes a closure if the value is Option::Some(T).

Executes a closure if the value is Option::None.

Implementations on Foreign Types§

Implementors§