pub struct EngineBuilder<'a, I, D> { /* private fields */ }Implementations§
Source§impl<I, D> EngineBuilder<'_, I, D>
impl<I, D> EngineBuilder<'_, I, D>
Source§impl<I, D> EngineBuilder<'_, I, D>
impl<I, D> EngineBuilder<'_, I, D>
pub fn exists_task<T>(&self, task: &T) -> boolwhere
T: Task<I, D>,
pub fn exists_task_by_id(&self, id: &I) -> bool
pub fn remove_task<T>(&self, task: &T) -> &Selfwhere
T: Task<I, D>,
pub fn remove_task_by_id(&self, id: &I) -> &Self
Trait Implementations§
Source§impl<'a, I: Clone, D: Clone> Clone for EngineBuilder<'a, I, D>
impl<'a, I: Clone, D: Clone> Clone for EngineBuilder<'a, I, D>
Source§fn clone(&self) -> EngineBuilder<'a, I, D>
fn clone(&self) -> EngineBuilder<'a, I, D>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<'a, I, D> Freeze for EngineBuilder<'a, I, D>
impl<'a, I, D> RefUnwindSafe for EngineBuilder<'a, I, D>
impl<'a, I, D> Send for EngineBuilder<'a, I, D>
impl<'a, I, D> Sync for EngineBuilder<'a, I, D>
impl<'a, I, D> Unpin for EngineBuilder<'a, I, D>
impl<'a, I, D> UnwindSafe for EngineBuilder<'a, I, D>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more