From 18d2c04023bdfdd0f4328e4a1425e6dc1b608794 Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Wed, 28 Aug 2024 22:50:03 -0400 Subject: [PATCH] fmt --- lofty/src/properties/channel_mask.rs | 32 ++++++++++++++-------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/lofty/src/properties/channel_mask.rs b/lofty/src/properties/channel_mask.rs index 9e10efe6f..014c9d613 100644 --- a/lofty/src/properties/channel_mask.rs +++ b/lofty/src/properties/channel_mask.rs @@ -108,14 +108,14 @@ impl ChannelMask { | Self::BACK_CENTER.bits() | Self::LOW_FREQUENCY.bits(), )), - 8 => { - Some(Self( - Self::linear_surround().bits() - | Self::SIDE_LEFT.bits() | Self::SIDE_RIGHT.bits() - | Self::BACK_LEFT.bits() | Self::BACK_RIGHT.bits() - | Self::LOW_FREQUENCY.bits(), - )) - }, + 8 => Some(Self( + Self::linear_surround().bits() + | Self::SIDE_LEFT.bits() + | Self::SIDE_RIGHT.bits() + | Self::BACK_LEFT.bits() + | Self::BACK_RIGHT.bits() + | Self::LOW_FREQUENCY.bits(), + )), _ => None, } } @@ -143,14 +143,14 @@ impl ChannelMask { | Self::BACK_RIGHT.bits() | Self::LOW_FREQUENCY.bits(), )), - 7 => { - Some(Self( - Self::linear_surround().bits() - | Self::SIDE_LEFT.bits() | Self::SIDE_RIGHT.bits() - | Self::BACK_LEFT.bits() | Self::BACK_RIGHT.bits() - | Self::LOW_FREQUENCY.bits(), - )) - }, + 7 => Some(Self( + Self::linear_surround().bits() + | Self::SIDE_LEFT.bits() + | Self::SIDE_RIGHT.bits() + | Self::BACK_LEFT.bits() + | Self::BACK_RIGHT.bits() + | Self::LOW_FREQUENCY.bits(), + )), _ => None, } }