pub struct ConstIsize<const N: isize>;Trait Implementations§
Source§impl<const N: isize> Clone for ConstIsize<N>
impl<const N: isize> Clone for ConstIsize<N>
Source§fn clone(&self) -> ConstIsize<N>
fn clone(&self) -> ConstIsize<N>
Returns a copy 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<const N: isize> Cuisiner for ConstIsize<N>
impl<const N: isize> Cuisiner for ConstIsize<N>
type Raw<B: ByteOrder> = Isize<B>
Source§fn try_from_raw<B: ByteOrder>(raw: Self::Raw<B>) -> Result<Self, CuisinerError>
fn try_from_raw<B: ByteOrder>(raw: Self::Raw<B>) -> Result<Self, CuisinerError>
Attempt to convert this value from a raw value.
Source§fn try_to_raw<B: ByteOrder>(self) -> Result<Self::Raw<B>, CuisinerError>
fn try_to_raw<B: ByteOrder>(self) -> Result<Self::Raw<B>, CuisinerError>
Attempt to convert this value into the raw value.
Source§fn from_bytes<B: ByteOrder>(bytes: &[u8]) -> Result<Self, CuisinerError>
fn from_bytes<B: ByteOrder>(bytes: &[u8]) -> Result<Self, CuisinerError>
Read the provided bytes and attempt to parse out the type.
Auto Trait Implementations§
impl<const N: isize> Freeze for ConstIsize<N>
impl<const N: isize> RefUnwindSafe for ConstIsize<N>
impl<const N: isize> Send for ConstIsize<N>
impl<const N: isize> Sync for ConstIsize<N>
impl<const N: isize> Unpin for ConstIsize<N>
impl<const N: isize> UnwindSafe for ConstIsize<N>
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