Type Alias OptionalPtrMut

Source
pub type OptionalPtrMut<T> = *mut T;
Expand description

A nullable muttable pointer to T

guaranteed to be accepted by the syscall if it is null, however the syscall will return ErrorStatus::InvalidPtr if it is not aligned to align_of::<T>()

this is typically for the syscall to return optional values