pub trait Tuple0Call {
    // Required method
    fn call<F: FnOnce() -> O, O>(self, f: F) -> O;
}

Required Methods§

source

fn call<F: FnOnce() -> O, O>(self, f: F) -> O

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Tuple0Call for ()

source§

fn call<F: FnOnce() -> O, O>(self, f: F) -> O

Implementors§