Trait ExecutorExt

Source
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§

Source

fn user(&self) -> UserScope<'_, Self>

Source

fn faction(&self) -> FactionScope<'_, Self>

Source

fn torn(&self) -> TornScope<'_, Self>

Source

fn market(&self) -> MarketScope<'_, Self>

Source

fn racing(&self) -> RacingScope<'_, Self>

Source

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.

Implementors§

Source§

impl<T> ExecutorExt for T
where T: Executor + Sized,