pub struct FactorizedActionDesc {
pub family: &'static str,
pub arg0: Option<u16>,
pub arg1: Option<u16>,
pub arg2: Option<u16>,
}Expand description
Machine-friendly factorized description of an action id.
Fields§
§family: &'static strAction family name.
arg0: Option<u16>First factorized argument slot.
arg1: Option<u16>Second factorized argument slot.
arg2: Option<u16>Third factorized argument slot.
Trait Implementations§
Source§impl Clone for FactorizedActionDesc
impl Clone for FactorizedActionDesc
Source§fn clone(&self) -> FactorizedActionDesc
fn clone(&self) -> FactorizedActionDesc
Returns a duplicate of the value. Read more
1.0.0 · 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 FactorizedActionDesc
impl Debug for FactorizedActionDesc
Source§impl PartialEq for FactorizedActionDesc
impl PartialEq for FactorizedActionDesc
Source§impl Serialize for FactorizedActionDesc
impl Serialize for FactorizedActionDesc
impl Eq for FactorizedActionDesc
impl StructuralPartialEq for FactorizedActionDesc
Auto Trait Implementations§
impl Freeze for FactorizedActionDesc
impl RefUnwindSafe for FactorizedActionDesc
impl Send for FactorizedActionDesc
impl Sync for FactorizedActionDesc
impl Unpin for FactorizedActionDesc
impl UnsafeUnpin for FactorizedActionDesc
impl UnwindSafe for FactorizedActionDesc
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<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