pub enum ControlGainMode {
Standard,
HighSpeed,
}
Expand description
Gain mode for the XOSC32K control loop
The XOSC32K crystal oscillator control loop has a configurable gain to allow users to trade power for speed and stability.
Variants§
Trait Implementations§
Source§impl Clone for ControlGainMode
impl Clone for ControlGainMode
Source§fn clone(&self) -> ControlGainMode
fn clone(&self) -> ControlGainMode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ControlGainMode
impl Default for ControlGainMode
Source§fn default() -> ControlGainMode
fn default() -> ControlGainMode
Returns the “default value” for a type. Read more
Source§impl From<ControlGainMode> for Cgmselect
impl From<ControlGainMode> for Cgmselect
Source§fn from(cgm: ControlGainMode) -> Self
fn from(cgm: ControlGainMode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ControlGainMode
impl PartialEq for ControlGainMode
impl Copy for ControlGainMode
impl Eq for ControlGainMode
impl StructuralPartialEq for ControlGainMode
Auto Trait Implementations§
impl Freeze for ControlGainMode
impl RefUnwindSafe for ControlGainMode
impl Send for ControlGainMode
impl Sync for ControlGainMode
impl Unpin for ControlGainMode
impl UnwindSafe for ControlGainMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more