pub trait ExecutorExt: Executor + Sized {
// Required methods
fn user(self) -> UserScope<Self>;
fn faction(self) -> FactionScope<Self>;
fn torn(self) -> TornScope<Self>;
fn market(self) -> MarketScope<Self>;
fn racing(self) -> RacingScope<Self>;
fn forum(self) -> ForumScope<Self>;
fn key(self) -> KeyScope<Self>;
}
Required Methods§
fn user(self) -> UserScope<Self>
fn faction(self) -> FactionScope<Self>
fn torn(self) -> TornScope<Self>
fn market(self) -> MarketScope<Self>
fn racing(self) -> RacingScope<Self>
fn forum(self) -> ForumScope<Self>
fn key(self) -> KeyScope<Self>
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.