Trait WorldStub

Source
pub trait WorldStub: Stub<Req = WorldRequest, Resp = WorldResponse> { }
Expand description

The stub trait for service World.

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§

Source§

impl<S> WorldStub for S
where S: Stub<Req = WorldRequest, Resp = WorldResponse>,