pub struct ActionSpec {
pub kind: ActionKind,
pub upstream_class: &'static str,
pub effects: &'static [ActionEffect],
pub accepts_extra_flags: bool,
}Expand description
Static descriptor for an upstream action class.
Fields§
§kind: ActionKind§upstream_class: &'static str§effects: &'static [ActionEffect]§accepts_extra_flags: boolTrait Implementations§
Source§impl Clone for ActionSpec
impl Clone for ActionSpec
Source§fn clone(&self) -> ActionSpec
fn clone(&self) -> ActionSpec
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 ActionSpec
impl Debug for ActionSpec
Source§impl PartialEq for ActionSpec
impl PartialEq for ActionSpec
Source§fn eq(&self, other: &ActionSpec) -> bool
fn eq(&self, other: &ActionSpec) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ActionSpec
impl Eq for ActionSpec
impl StructuralPartialEq for ActionSpec
Auto Trait Implementations§
impl Freeze for ActionSpec
impl RefUnwindSafe for ActionSpec
impl Send for ActionSpec
impl Sync for ActionSpec
impl Unpin for ActionSpec
impl UnsafeUnpin for ActionSpec
impl UnwindSafe for ActionSpec
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.