pub enum SDM {
Empty,
High(u8),
Low(u8),
}
Expand description
Signal Duration Multiplier can be 1x (short), 3x (long) or 7x (word space). SDM signals are either High, or Low which corresponds to electrically closed active signals or spaces inbetween them.
Variants§
Trait Implementations§
impl Copy for SDM
impl StructuralPartialEq for SDM
Auto Trait Implementations§
impl Freeze for SDM
impl RefUnwindSafe for SDM
impl Send for SDM
impl Sync for SDM
impl Unpin for SDM
impl UnwindSafe for SDM
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