Trait airbag::AirbagResult[][src]

pub trait AirbagResult<E>: Sized {
    fn airbag_with_dedup_key<S: Into<String>, F: Fn() -> S>(
        self,
        dedup_key_factory: F
    ) -> Self;
fn airbag_if<F: Fn(&E) -> bool>(self, f: F) -> Self;
fn airbag(self) -> Self; fn airbag_drop(self) { ... }
fn airbag_drop_with_dedup_key<S: Into<String>, F: Fn() -> S>(
        self,
        dedup_key_factory: F
    ) { ... } }

Required methods

Provided methods

Implementations on Foreign Types

Implementors