pub struct Signal16 {
pub values: i16,
}
Expand description
16 signals into one
Fields
values: i16
Implementations
Trait Implementations
sourceimpl AddAssign<i16> for Signal16
impl AddAssign<i16> for Signal16
sourcefn add_assign(&mut self, rhs: i16)
fn add_assign(&mut self, rhs: i16)
Performs the
+=
operation. Read moresourceimpl From<&AsmInstruction> for Signal16
impl From<&AsmInstruction> for Signal16
sourcefn from(instr: &AsmInstruction) -> Self
fn from(instr: &AsmInstruction) -> Self
Converts to this type from the input type.
sourceimpl PartialOrd<Signal16> for Signal16
impl PartialOrd<Signal16> for Signal16
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl SubAssign<i16> for Signal16
impl SubAssign<i16> for Signal16
sourcefn sub_assign(&mut self, rhs: i16)
fn sub_assign(&mut self, rhs: i16)
Performs the
-=
operation. Read moreimpl Copy for Signal16
Auto Trait Implementations
impl RefUnwindSafe for Signal16
impl Send for Signal16
impl Sync for Signal16
impl Unpin for Signal16
impl UnwindSafe for Signal16
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more