pub trait ModifyActions {
fn config(&mut self, config: AddConfig) -> &mut Self;
fn add(&mut self, action: impl IntoBoxedAction) -> &mut Self;
fn add_many(
&mut self,
mode: ExecutionMode,
actions: impl BoxedActionIter
) -> &mut Self;
fn next(&mut self) -> &mut Self;
fn cancel(&mut self) -> &mut Self;
fn pause(&mut self) -> &mut Self;
fn skip(&mut self) -> &mut Self;
fn clear(&mut self) -> &mut Self;
}Expand description
Methods for modifying actions.
Required Methods
sourcefn config(&mut self, config: AddConfig) -> &mut Self
fn config(&mut self, config: AddConfig) -> &mut Self
Sets the current config for actions to be added.