logo
pub unsafe trait KernelAdjustTime: KernelBase {
    const RAW_TIME_USER_HEADROOM: Duration;

    fn raw_adjust_time(delta: Duration) -> Result<(), AdjustTimeError>;
}
Expand description

Provides the adjust_time method.

Safety

See the Safety section of the module documentation.

Associated Constants

Required methods

Implementors