pub trait NewWithNullPtr {
    // Required method
    fn new_with_null_ptr() -> Self;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> NewWithNullPtr for *mut T

Implementors§