pub enum PinOperstate {
Active = 1,
Standby = 2,
NoSignal = 3,
QualFailed = 4,
}Available on crate feature
dpll only.Expand description
defines possible operational states of a pin with respect to its parent DPLL device, valid values for DPLL_A_PIN_OPERSTATE attribute Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Active = 1
pin is qualified and actively used by the DPLL
Standby = 2
pin is qualified but not actively used by the DPLL
NoSignal = 3
pin does not have a valid signal
QualFailed = 4
pin signal failed qualification (e.g. frequency or phase monitor)
Implementations§
Source§impl PinOperstate
impl PinOperstate
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for PinOperstate
impl Clone for PinOperstate
Source§fn clone(&self) -> PinOperstate
fn clone(&self) -> PinOperstate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PinOperstate
Auto Trait Implementations§
impl Freeze for PinOperstate
impl RefUnwindSafe for PinOperstate
impl Send for PinOperstate
impl Sync for PinOperstate
impl Unpin for PinOperstate
impl UnsafeUnpin for PinOperstate
impl UnwindSafe for PinOperstate
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