pub struct ActionSequence(/* private fields */);
Expand description
A sequence of actions to be performed.
See the documentation for Actions
for more details.
Trait Implementations§
Source§impl Debug for ActionSequence
impl Debug for ActionSequence
Source§impl From<KeyActions> for ActionSequence
impl From<KeyActions> for ActionSequence
Source§fn from(ka: KeyActions) -> ActionSequence
fn from(ka: KeyActions) -> ActionSequence
Converts to this type from the input type.
Source§impl From<MouseActions> for ActionSequence
impl From<MouseActions> for ActionSequence
Source§fn from(ma: MouseActions) -> ActionSequence
fn from(ma: MouseActions) -> ActionSequence
Converts to this type from the input type.
Source§impl From<NullActions> for ActionSequence
impl From<NullActions> for ActionSequence
Source§fn from(na: NullActions) -> ActionSequence
fn from(na: NullActions) -> ActionSequence
Converts to this type from the input type.
Source§impl From<PenActions> for ActionSequence
impl From<PenActions> for ActionSequence
Source§fn from(pa: PenActions) -> ActionSequence
fn from(pa: PenActions) -> ActionSequence
Converts to this type from the input type.
Source§impl From<TouchActions> for ActionSequence
impl From<TouchActions> for ActionSequence
Source§fn from(ta: TouchActions) -> ActionSequence
fn from(ta: TouchActions) -> ActionSequence
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActionSequence
impl RefUnwindSafe for ActionSequence
impl Send for ActionSequence
impl Sync for ActionSequence
impl Unpin for ActionSequence
impl UnwindSafe for ActionSequence
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