Trait cursive::With [] [src]

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

Generic trait to enable chainable API

Provided Methods

Calls the given closure on self.

Implementors