1use crate::{Signature, Type}; 2 3// BitFlags 4impl<F> Type for enumflags2::BitFlags<F> 5where 6 F: Type + enumflags2::BitFlag, 7{ 8 const SIGNATURE: &'static Signature = F::SIGNATURE; 9}