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>;
    fn key(self) -> KeyScope<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>

Source

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.

Implementors§

Source§

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