pub trait RegulatorState: Sealed + 'static {
    const DISABLE_ON_DROP: bool;
}
Expand description

A trait representing the different states a Regulator can be in.

Required Associated Constants§

source

const DISABLE_ON_DROP: bool

Whether the regulator should be disabled when dropped.

Object Safety§

This trait is not object safe.

Implementors§