Trait IsInit

Source
pub unsafe trait IsInit: InitStatus { }
Expand description

Marker trait for marker structs that represent initialised state

§Safety

Marker struct must actually represent an initialised state.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> IsInit for Init<T>
where T: ?Sized,