Remove unused methods including incorrect #[must_use...

This commit is contained in:
Corey Schuhen 2024-03-14 08:21:45 +10:00
parent 242759a600
commit 535e4c20e8

View file

@ -151,17 +151,6 @@ impl IdReg {
Self(reg & 0xFFFF_FFFE)
}
/// Sets the remote transmission (RTR) flag. This marks the identifier as
/// being part of a remote frame.
#[must_use = "returns a new IdReg without modifying `self`"]
/*fn with_rtr(self, rtr: bool) -> IdReg {
if rtr {
Self(self.0 | Self::RTR_MASK)
} else {
Self(self.0 & !Self::RTR_MASK)
}
}*/
/// Returns the identifier.
fn to_id(self) -> Id {
if self.is_extended() {
@ -189,11 +178,6 @@ impl IdReg {
self.0 & Self::IDE_MASK != 0
}
/// Returns `true` if the identifier is a standard identifier.
/*fn is_standard(self) -> bool {
!self.is_extended()
}*/
/// Returns `true` if the identifer is part of a remote frame (RTR bit set).
fn rtr(self) -> bool {
self.0 & Self::RTR_MASK != 0