pub enum ActionEnumAsRef<'a> {
Show 29 variants
Branch(&'a Branch),
Clock(&'a Clock),
Counter(&'a Counter),
Delayed(&'a Delayed),
Event(&'a Event),
Fixation(&'a Fixation),
Function(&'a Function),
Horizontal(&'a Horizontal),
Image(&'a Image),
Instruction(&'a Instruction),
KeyLogger(&'a KeyLogger),
Logger(&'a Logger),
Merge(&'a Merge),
Nil(&'a Nil),
Par(&'a Par),
Process(&'a Process),
Question(&'a Question),
Reaction(&'a Reaction),
Repeat(&'a Repeat),
Seq(&'a Seq),
Stack(&'a Stack),
Switch(&'a Switch),
Template(&'a Template),
Timeout(&'a Timeout),
Timer(&'a Timer),
Until(&'a Until),
Vertical(&'a Vertical),
View(&'a View),
Wait(&'a Wait),
}Variants§
Branch(&'a Branch)
Clock(&'a Clock)
Counter(&'a Counter)
Delayed(&'a Delayed)
Event(&'a Event)
Fixation(&'a Fixation)
Function(&'a Function)
Horizontal(&'a Horizontal)
Image(&'a Image)
Instruction(&'a Instruction)
KeyLogger(&'a KeyLogger)
Logger(&'a Logger)
Merge(&'a Merge)
Nil(&'a Nil)
Par(&'a Par)
Process(&'a Process)
Question(&'a Question)
Reaction(&'a Reaction)
Repeat(&'a Repeat)
Seq(&'a Seq)
Stack(&'a Stack)
Switch(&'a Switch)
Template(&'a Template)
Timeout(&'a Timeout)
Timer(&'a Timer)
Until(&'a Until)
Vertical(&'a Vertical)
View(&'a View)
Wait(&'a Wait)
Trait Implementations§
Source§impl<'a> From<&'a (dyn Action + 'static)> for ActionEnumAsRef<'a>
impl<'a> From<&'a (dyn Action + 'static)> for ActionEnumAsRef<'a>
Source§fn from(f: &dyn Action) -> ActionEnumAsRef<'_>
fn from(f: &dyn Action) -> ActionEnumAsRef<'_>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for ActionEnumAsRef<'a>
impl<'a> !RefUnwindSafe for ActionEnumAsRef<'a>
impl<'a> !Send for ActionEnumAsRef<'a>
impl<'a> !Sync for ActionEnumAsRef<'a>
impl<'a> Unpin for ActionEnumAsRef<'a>
impl<'a> !UnwindSafe for ActionEnumAsRef<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more