pub trait RegistersArbitrary: Registers<ReadGpr: for<'a> Arbitrary<'a>, ReadWriteGpr: for<'a> Arbitrary<'a>, WriteGpr: for<'a> Arbitrary<'a>, ReadXmm: for<'a> Arbitrary<'a>, ReadWriteXmm: for<'a> Arbitrary<'a>, WriteXmm: for<'a> Arbitrary<'a>> { }Expand description
Helper trait that’s used to be the same as Registers except with an extra
for<'a> Arbitrary<'a> bound on all of the associated types.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".