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>
impl<const rdSET: bool, const rmSET: bool, const shiftSET: bool> AddSPRegisterBuilder<false, rdSET, rmSET, shiftSET>
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>
impl<const sSET: bool, const rmSET: bool, const shiftSET: bool> AddSPRegisterBuilder<sSET, false, rmSET, shiftSET>
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>
impl<const sSET: bool, const rdSET: bool, const shiftSET: bool> AddSPRegisterBuilder<sSET, rdSET, false, shiftSET>
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>
impl<const sSET: bool, const rdSET: bool, const rmSET: bool> AddSPRegisterBuilder<sSET, rdSET, rmSET, false>
pub fn set_shift( self, shift: Option<ImmShift>, ) -> AddSPRegisterBuilder<sSET, rdSET, rmSET, true>
Source§impl AddSPRegisterBuilder<false, false, false, false>
impl AddSPRegisterBuilder<false, false, false, false>
pub fn new() -> AddSPRegisterBuilder<false, false, false, false>
Source§impl AddSPRegisterBuilder<true, true, true, true>
impl AddSPRegisterBuilder<true, true, true, true>
pub fn complete(self) -> AddSPRegister
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> 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