Skip to main content

AddSPRegisterBuilder

Struct AddSPRegisterBuilder 

Source
pub struct AddSPRegisterBuilder<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> { /* private fields */ }

Implementations§

Source§

impl<const rdSET: bool, const rmSET: bool, const shiftSET: bool> AddSPRegisterBuilder<false, rdSET, rmSET, shiftSET>

Source

pub fn set_s( self, s: Option<bool>, ) -> AddSPRegisterBuilder<true, rdSET, rmSET, shiftSET>

Source§

impl<const sSET: bool, const rmSET: bool, const shiftSET: bool> AddSPRegisterBuilder<sSET, false, rmSET, shiftSET>

Source

pub fn set_rd( self, rd: Option<Register>, ) -> AddSPRegisterBuilder<sSET, true, rmSET, shiftSET>

Source§

impl<const sSET: bool, const rdSET: bool, const shiftSET: bool> AddSPRegisterBuilder<sSET, rdSET, false, shiftSET>

Source

pub fn set_rm( self, rm: Register, ) -> AddSPRegisterBuilder<sSET, rdSET, true, shiftSET>

Source§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool> AddSPRegisterBuilder<sSET, rdSET, rmSET, false>

Source

pub fn set_shift( self, shift: Option<ImmShift>, ) -> AddSPRegisterBuilder<sSET, rdSET, rmSET, true>

Source§

impl AddSPRegisterBuilder<false, false, false, false>

Source

pub fn new() -> AddSPRegisterBuilder<false, false, false, false>

Source§

impl AddSPRegisterBuilder<true, true, true, true>

Auto Trait Implementations§

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> Freeze for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> RefUnwindSafe for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> Send for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> Sync for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> Unpin for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> UnsafeUnpin for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

§

impl<const sSET: bool, const rdSET: bool, const rmSET: bool, const shiftSET: bool> UnwindSafe for AddSPRegisterBuilder<sSET, rdSET, rmSET, shiftSET>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.