pub struct ActionsStorage { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl Debug for ActionsStorage
impl Debug for ActionsStorage
Source§impl Default for ActionsStorage
impl Default for ActionsStorage
Source§fn default() -> ActionsStorage
fn default() -> ActionsStorage
Returns the “default value” for a type. Read more
Source§impl IActionsStorage for ActionsStorage
impl IActionsStorage for ActionsStorage
fn add_action( &mut self, name: String, action: fn(HashMap<String, String>, Option<MarkupElement>) -> EventResponse, ) -> &mut Self
fn has_action(&self, name: String) -> bool
fn execute( &self, name: String, state: HashMap<String, String>, node: Option<MarkupElement>, ) -> Option<EventResponse>
Auto Trait Implementations§
impl Freeze for ActionsStorage
impl RefUnwindSafe for ActionsStorage
impl Send for ActionsStorage
impl Sync for ActionsStorage
impl Unpin for ActionsStorage
impl UnwindSafe for ActionsStorage
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