fix: 🐛 Fix warnings on newer rust toolchain
This commit is contained in:
parent
5b0dbbfb8f
commit
9ac097c3cf
|
@ -43,7 +43,7 @@ impl Color {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(PartialEq)]
|
#[derive(PartialEq, Eq)]
|
||||||
pub enum PixelOrder {
|
pub enum PixelOrder {
|
||||||
BGR,
|
BGR,
|
||||||
RGB,
|
RGB,
|
||||||
|
|
|
@ -152,7 +152,7 @@ impl ::core::convert::From<Function> for u32 {
|
||||||
|
|
||||||
/// Pull up/down resistor setup.
|
/// Pull up/down resistor setup.
|
||||||
#[repr(u8)]
|
#[repr(u8)]
|
||||||
#[derive(PartialEq)]
|
#[derive(PartialEq, Eq)]
|
||||||
pub enum PullUpDown {
|
pub enum PullUpDown {
|
||||||
None = 0b00,
|
None = 0b00,
|
||||||
Up = 0b01,
|
Up = 0b01,
|
||||||
|
|
Loading…
Reference in New Issue