Trait BulkExecutorExt

Source
pub trait BulkExecutorExt<'e>: BulkExecutor<'e> + Sized {
    // Required methods
    fn user_bulk(self) -> BulkUserScope<'e, Self>;
    fn faction_bulk(self) -> BulkFactionScope<'e, Self>;
    fn torn_bulk(self) -> BulkTornScope<'e, Self>;
    fn market_bulk(self) -> BulkMarketScope<'e, Self>;
    fn racing_bulk(self) -> BulkRacingScope<'e, Self>;
    fn forum_bulk(self) -> BulkForumScope<'e, Self>;
}

Required Methods§

Source

fn user_bulk(self) -> BulkUserScope<'e, Self>

Source

fn faction_bulk(self) -> BulkFactionScope<'e, Self>

Source

fn torn_bulk(self) -> BulkTornScope<'e, Self>

Source

fn market_bulk(self) -> BulkMarketScope<'e, Self>

Source

fn racing_bulk(self) -> BulkRacingScope<'e, Self>

Source

fn forum_bulk(self) -> BulkForumScope<'e, 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<'e, T> BulkExecutorExt<'e> for T
where T: BulkExecutor<'e> + Sized,