pub struct SevenSegment<A, B, C, D, E, F, G, Common> { /* private fields */ }
Expand description
Represents 7-segment display.
This struct provides you a method to show a value on the 7-segment display by setting the appropriate pins high or low.
Use SevenSegmentPins
to construct it.
Implementations§
Source§impl<A, B, C, D, E, F, G, Common> SevenSegment<A, B, C, D, E, F, G, Common>
impl<A, B, C, D, E, F, G, Common> SevenSegment<A, B, C, D, E, F, G, Common>
Auto Trait Implementations§
impl<A, B, C, D, E, F, G, Common> Freeze for SevenSegment<A, B, C, D, E, F, G, Common>
impl<A, B, C, D, E, F, G, Common> RefUnwindSafe for SevenSegment<A, B, C, D, E, F, G, Common>where
A: RefUnwindSafe,
B: RefUnwindSafe,
C: RefUnwindSafe,
D: RefUnwindSafe,
E: RefUnwindSafe,
F: RefUnwindSafe,
G: RefUnwindSafe,
Common: RefUnwindSafe,
impl<A, B, C, D, E, F, G, Common> Send for SevenSegment<A, B, C, D, E, F, G, Common>
impl<A, B, C, D, E, F, G, Common> Sync for SevenSegment<A, B, C, D, E, F, G, Common>
impl<A, B, C, D, E, F, G, Common> Unpin for SevenSegment<A, B, C, D, E, F, G, Common>
impl<A, B, C, D, E, F, G, Common> UnwindSafe for SevenSegment<A, B, C, D, E, F, G, Common>where
A: UnwindSafe,
B: UnwindSafe,
C: UnwindSafe,
D: UnwindSafe,
E: UnwindSafe,
F: UnwindSafe,
G: UnwindSafe,
Common: UnwindSafe,
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