Trait cursive::With [] [src]

pub trait With: Sized {
    fn with<F: FnOnce(&mut Self)>(self, f: F) -> Self { ... }
fn try_with<E, F>(self, f: F) -> Result<Self, E>
    where
        F: FnOnce(&mut Self) -> Result<(), E>
, { ... } }

Generic trait to enable chainable API

Provided Methods

Calls the given closure on self.

Calls the given closure on self.

Implementors