We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FeatureBits
1 parent b4847c8 commit 26f03e0Copy full SHA for 26f03e0
1 file changed
src/features.rs
@@ -4,10 +4,8 @@ use crate::le128;
4
5
/// Feature Bits
6
#[doc(alias = "VIRTIO_F")]
7
-pub trait FeatureBits: bitflags::Flags<Bits = le128>
8
-where
9
- Self: From<F> + AsRef<F> + AsMut<F>,
10
- F: From<Self> + AsRef<Self> + AsMut<Self>,
+pub trait FeatureBits:
+ bitflags::Flags<Bits = le128> + From<F> + Into<F> + AsRef<F> + AsMut<F>
11
{
12
/// Returns the feature that this feature requires.
13
///
0 commit comments