chore(protocol): rename invert to inverted

This commit is contained in:
2026-07-08 16:58:03 -04:00
parent 89404a56e0
commit cebf7dd93b

View File

@@ -13,7 +13,7 @@ pub enum State {
} }
impl State { impl State {
pub const fn invert(self) -> Self { pub const fn inverted(self) -> Self {
match self { match self {
State::Off => State::On, State::Off => State::On,
State::On => State::Off, State::On => State::Off,
@@ -95,7 +95,7 @@ where
/// Toggle the light by setting it to the inverse of its current state /// Toggle the light by setting it to the inverse of its current state
async fn toggle(&mut self) -> Result<(), Self::Error> { async fn toggle(&mut self) -> Result<(), Self::Error> {
let state = self.get_state().await.context(GetStateSnafu)?; let state = self.get_state().await.context(GetStateSnafu)?;
self.set_state(state.invert()) self.set_state(state.inverted())
.await .await
.context(SetStateSnafu)?; .context(SetStateSnafu)?;