Trait ValueBoxIntoRaw

Source
pub trait ValueBoxIntoRaw<Return: Any> {
    // Required method
    fn into_raw(self) -> *mut ValueBox<Return>;
}

Required Methods§

Source

fn into_raw(self) -> *mut ValueBox<Return>

Implementors§

Source§

impl<Return: Any> ValueBoxIntoRaw<Return> for Result<ValueBox<Return>>

Source§

impl<Return: Any> ValueBoxIntoRaw<Return> for Result<Option<ValueBox<Return>>>