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>;
}
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>
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.