@@ -572,7 +572,7 @@ macro_rules! dispatch_types_inner {
572572 impl $name {
573573 #[ cfg( wgpu_core) ]
574574 #[ inline]
575- #[ allow( unused) ]
575+ #[ allow( clippy :: allow_attributes , unused) ]
576576 pub fn as_core( & self ) -> & <$wgpu_core_context as InterfaceTypes >:: $subtype {
577577 match self {
578578 Self :: Core ( value) => value,
@@ -582,7 +582,7 @@ macro_rules! dispatch_types_inner {
582582
583583 #[ cfg( wgpu_core) ]
584584 #[ inline]
585- #[ allow( unused) ]
585+ #[ allow( clippy :: allow_attributes , unused) ]
586586 pub fn as_core_opt( & self ) -> Option <& <$wgpu_core_context as InterfaceTypes >:: $subtype> {
587587 match self {
588588 Self :: Core ( value) => Some ( value) ,
@@ -592,7 +592,7 @@ macro_rules! dispatch_types_inner {
592592
593593 #[ cfg( webgpu) ]
594594 #[ inline]
595- #[ allow( unused) ]
595+ #[ allow( clippy :: allow_attributes , unused) ]
596596 pub fn as_webgpu( & self ) -> & <$webgpu_context as InterfaceTypes >:: $subtype {
597597 match self {
598598 Self :: WebGPU ( value) => value,
@@ -602,7 +602,7 @@ macro_rules! dispatch_types_inner {
602602
603603 #[ cfg( webgpu) ]
604604 #[ inline]
605- #[ allow( unused) ]
605+ #[ allow( clippy :: allow_attributes , unused) ]
606606 pub fn as_webgpu_opt( & self ) -> Option <& <$webgpu_context as InterfaceTypes >:: $subtype> {
607607 match self {
608608 Self :: WebGPU ( value) => Some ( value) ,
@@ -657,7 +657,7 @@ macro_rules! dispatch_types_inner {
657657 impl $name {
658658 #[ cfg( wgpu_core) ]
659659 #[ inline]
660- #[ allow( unused) ]
660+ #[ allow( clippy :: allow_attributes , unused) ]
661661 pub fn as_core( & self ) -> & <$wgpu_core_context as InterfaceTypes >:: $subtype {
662662 match self {
663663 Self :: Core ( value) => value,
@@ -667,7 +667,7 @@ macro_rules! dispatch_types_inner {
667667
668668 #[ cfg( wgpu_core) ]
669669 #[ inline]
670- #[ allow( unused) ]
670+ #[ allow( clippy :: allow_attributes , unused) ]
671671 pub fn as_core_mut( & mut self ) -> & mut <$wgpu_core_context as InterfaceTypes >:: $subtype {
672672 match self {
673673 Self :: Core ( value) => value,
@@ -677,7 +677,7 @@ macro_rules! dispatch_types_inner {
677677
678678 #[ cfg( wgpu_core) ]
679679 #[ inline]
680- #[ allow( unused) ]
680+ #[ allow( clippy :: allow_attributes , unused) ]
681681 pub fn as_core_opt( & self ) -> Option <& <$wgpu_core_context as InterfaceTypes >:: $subtype> {
682682 match self {
683683 Self :: Core ( value) => Some ( value) ,
@@ -687,7 +687,7 @@ macro_rules! dispatch_types_inner {
687687
688688 #[ cfg( wgpu_core) ]
689689 #[ inline]
690- #[ allow( unused) ]
690+ #[ allow( clippy :: allow_attributes , unused) ]
691691 pub fn as_core_mut_opt(
692692 & mut self ,
693693 ) -> Option <& mut <$wgpu_core_context as InterfaceTypes >:: $subtype> {
@@ -699,7 +699,7 @@ macro_rules! dispatch_types_inner {
699699
700700 #[ cfg( webgpu) ]
701701 #[ inline]
702- #[ allow( unused) ]
702+ #[ allow( clippy :: allow_attributes , unused) ]
703703 pub fn as_webgpu( & self ) -> & <$webgpu_context as InterfaceTypes >:: $subtype {
704704 match self {
705705 Self :: WebGPU ( value) => value,
@@ -709,7 +709,7 @@ macro_rules! dispatch_types_inner {
709709
710710 #[ cfg( webgpu) ]
711711 #[ inline]
712- #[ allow( unused) ]
712+ #[ allow( clippy :: allow_attributes , unused) ]
713713 pub fn as_webgpu_mut( & mut self ) -> & mut <$webgpu_context as InterfaceTypes >:: $subtype {
714714 match self {
715715 Self :: WebGPU ( value) => value,
@@ -719,7 +719,7 @@ macro_rules! dispatch_types_inner {
719719
720720 #[ cfg( webgpu) ]
721721 #[ inline]
722- #[ allow( unused) ]
722+ #[ allow( clippy :: allow_attributes , unused) ]
723723 pub fn as_webgpu_opt( & self ) -> Option <& <$webgpu_context as InterfaceTypes >:: $subtype> {
724724 match self {
725725 Self :: WebGPU ( value) => Some ( value) ,
@@ -729,7 +729,7 @@ macro_rules! dispatch_types_inner {
729729
730730 #[ cfg( webgpu) ]
731731 #[ inline]
732- #[ allow( unused) ]
732+ #[ allow( clippy :: allow_attributes , unused) ]
733733 pub fn as_webgpu_mut_opt(
734734 & mut self ,
735735 ) -> Option <& mut <$webgpu_context as InterfaceTypes >:: $subtype> {
0 commit comments