Trait ffi_utils::callback::CallbackArgs [] [src]

pub trait CallbackArgs {
    fn default() -> Self;
}

Trait for arguments to callbacks. This is similar to Default, but allows us to implement it for foreign types that don't already implement Default.

Required Methods

Return default value for the type, used when calling the callback with error.

Implementors