pub trait ReturnBoxerResult<Return: Any> {
    fn into_raw(self) -> *mut ValueBox<Return>;
    fn log(self);
    fn or_log(self, value: Return) -> Return;
    fn or_print(self, value: Return) -> Return;
}

Required Methods§

Implementors§