Merge #1135
1135: Add Clone & Copy on embassy_nrf::gpio::Level r=Dirbaio a=mdevlamynck This simply adds the Clone and Copy derive traits on embassy_nrf::gpio::Level. Co-authored-by: Matthias Devlamynck <matthias.devlamynck@mailoo.org>
This commit is contained in:
		| @@ -70,7 +70,7 @@ impl<'d, T: Pin> Input<'d, T> { | ||||
| } | ||||
|  | ||||
| /// Digital input or output level. | ||||
| #[derive(Debug, Eq, PartialEq)] | ||||
| #[derive(Clone, Copy, Debug, Eq, PartialEq)] | ||||
| #[cfg_attr(feature = "defmt", derive(defmt::Format))] | ||||
| pub enum Level { | ||||
|     /// Logical low. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user