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