pub struct FastCall(/* private fields */);
Implementations§
Source§impl FastCall
impl FastCall
Sourcepub const fn with_number_checked(self, value: u16) -> Result<Self, ()>
pub const fn with_number_checked(self, value: u16) -> Result<Self, ()>
Bits: 0..16
Sourcepub const fn with_number(self, value: u16) -> Self
pub const fn with_number(self, value: u16) -> Self
Bits: 0..16
Sourcepub const fn set_number(&mut self, value: u16)
pub const fn set_number(&mut self, value: u16)
Bits: 0..16
Sourcepub const fn with_hint_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_hint_checked(self, value: bool) -> Result<Self, ()>
Bits: 16..17
Sourcepub const fn with_mbz_checked(self, value: u8) -> Result<Self, ()>
pub const fn with_mbz_checked(self, value: u8) -> Result<Self, ()>
Bits: 17..24
Sourcepub const fn with_service_checked(self, value: u8) -> Result<Self, ()>
pub const fn with_service_checked(self, value: u8) -> Result<Self, ()>
Bits: 24..30
Sourcepub const fn with_service(self, value: u8) -> Self
pub const fn with_service(self, value: u8) -> Self
Bits: 24..30
Sourcepub const fn set_service(&mut self, value: u8)
pub const fn set_service(&mut self, value: u8)
Bits: 24..30
Sourcepub const fn with_smc64_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_smc64_checked(self, value: bool) -> Result<Self, ()>
Bits: 30..31
Sourcepub const fn with_smc64(self, value: bool) -> Self
pub const fn with_smc64(self, value: bool) -> Self
Bits: 30..31
Sourcepub const fn with_fast_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_fast_checked(self, value: bool) -> Result<Self, ()>
Bits: 31..32
Trait Implementations§
Source§impl Ord for FastCall
impl Ord for FastCall
Source§impl PartialOrd for FastCall
impl PartialOrd for FastCall
impl Copy for FastCall
impl Eq for FastCall
impl StructuralPartialEq for FastCall
Auto Trait Implementations§
impl Freeze for FastCall
impl RefUnwindSafe for FastCall
impl Send for FastCall
impl Sync for FastCall
impl Unpin for FastCall
impl UnwindSafe for FastCall
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