Constant PRIVATE

pub const PRIVATE: u32 = 0x0001;
Expand description

Field accessible only by the parent type

Private fields can only be accessed by code within the same type definition. This is the most restrictive access level and provides strong encapsulation for internal type state.