This commit is contained in:
hakki 2024-11-10 19:31:43 +01:00 committed by mikolaj
parent 63804a0297
commit 566ce37a6b
1 changed files with 3 additions and 3 deletions

View File

@ -81,11 +81,11 @@ pub enum InvokerError {
#[derive(Getters, Dissolve)] #[derive(Getters, Dissolve)]
/// Structure that manages the execution and history of commands within the autorouting system /// Structure that manages the execution and history of commands within the autorouting system
pub struct Invoker<M: AccessMesadata> { pub struct Invoker<M: AccessMesadata> {
/// Returns an reference to used [`Autorouter`] executor /// Instance for executing desired autorouting commands
pub(super) autorouter: Autorouter<M>, pub(super) autorouter: Autorouter<M>,
/// Returns a reference to [`History`] of executed commands /// History of executed commands
pub(super) history: History, pub(super) history: History,
/// Returns a reference to currently ongoing command type. /// Currently ongoing command type.
pub(super) ongoing_command: Option<Command>, pub(super) ongoing_command: Option<Command>,
} }