pub unsafe trait AsAlpmListItemPtr<'a> {
    type Output;

    const FREE: Option<unsafe extern "C" fn(_ptr: *mut c_void)> = None;

    fn as_ptr(&self) -> *mut c_void;
}

Required Associated Types

Provided Associated Constants

Required Methods

Implementations on Foreign Types

Implementors