pub trait ArbitraryWriter<World, Value>: Writer<World> {
// Required method
fn write(&mut self, val: Value) -> impl Future<Output = ()>;
}
Expand description
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<W, L, R, Val> Arbitrary<W, Val> for Tee<L, R>
impl<W, Val, Out> Arbitrary<W, Val> for Basic<Out>
impl<W, Val, Out> Arbitrary<W, Val> for Libtest<W, Out>
Available on crate feature
libtest
only.