Remove ChannelsAlpha flag

Welcome to the party!
This commit is contained in:
Conrad Irwin 2024-01-10 09:29:44 -07:00
parent f8e4fd012f
commit 1c1151a0ed
4 changed files with 99 additions and 119 deletions

View file

@ -16,12 +16,6 @@ pub trait FeatureFlag {
const NAME: &'static str;
}
pub enum ChannelsAlpha {}
impl FeatureFlag for ChannelsAlpha {
const NAME: &'static str = "channels_alpha";
}
pub trait FeatureFlagViewExt<V: 'static> {
fn observe_flag<T: FeatureFlag, F>(&mut self, callback: F) -> Subscription
where