pub struct EntryAction {
pub action_name: Option<String>,
pub body: StateDefBody,
}Expand description
Entry action: entry (; or body).
Fields§
§action_name: Option<String>For entry action name body form; None for plain entry body.
body: StateDefBodyTrait Implementations§
Source§impl Clone for EntryAction
impl Clone for EntryAction
Source§fn clone(&self) -> EntryAction
fn clone(&self) -> EntryAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EntryAction
impl Debug for EntryAction
Source§impl PartialEq for EntryAction
impl PartialEq for EntryAction
Source§fn eq(&self, other: &EntryAction) -> bool
fn eq(&self, other: &EntryAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EntryAction
impl StructuralPartialEq for EntryAction
Auto Trait Implementations§
impl Freeze for EntryAction
impl RefUnwindSafe for EntryAction
impl Send for EntryAction
impl Sync for EntryAction
impl Unpin for EntryAction
impl UnsafeUnpin for EntryAction
impl UnwindSafe for EntryAction
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