Trait InitStatus

Source
pub unsafe trait InitStatus {
    const IS_INIT: bool;
    const IS_UNINIT: bool = _;
}
Expand description

Trait for marker structs to hold state about if a field in a builder is initialised or not

§Safety

IS_INIT and IS_UNINIT must both be set correctly to acccurately represent the state of the field. If you set IS_INIT correctly, there is a default implementation for IS_UNINIT which is just an inversion of IS_INIT, and therefore always correct.

Required Associated Constants§

Provided Associated Constants§

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 InitStatus for Uninit

Source§

const IS_INIT: bool = false

Source§

impl<T, M> InitStatus for Init<T, M>
where T: ?Sized, M: ?Sized + TypeMarker,

Source§

const IS_INIT: bool = true