pub struct ScheduleManager<SG: Storage + 'static, TG: Trigger + 'static, E: Executor + 'static> { /* private fields */ }Implementations§
Source§impl<SG: Storage, TG: Trigger, E: Executor> ScheduleManager<SG, TG, E>
impl<SG: Storage, TG: Trigger, E: Executor> ScheduleManager<SG, TG, E>
pub fn new(storage: SG, trigger: TG, executor: E) -> Self
pub fn add_runnable(&mut self, runnable: RunnableHolder)
Auto Trait Implementations§
impl<SG, TG, E> Freeze for ScheduleManager<SG, TG, E>
impl<SG, TG, E> RefUnwindSafe for ScheduleManager<SG, TG, E>
impl<SG, TG, E> Send for ScheduleManager<SG, TG, E>where
TG: Send,
impl<SG, TG, E> Sync for ScheduleManager<SG, TG, E>where
TG: Send,
impl<SG, TG, E> Unpin for ScheduleManager<SG, TG, E>
impl<SG, TG, E> UnwindSafe for ScheduleManager<SG, TG, E>
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