pub struct U32Val(/* private fields */);
Implementations§
Trait Implementations§
Source§impl CheckedEnvArg for U32Val
impl CheckedEnvArg for U32Val
Source§impl<E> TryFromVal<E, &U32Val> for Valwhere
E: Env,
impl<E> TryFromVal<E, &U32Val> for Valwhere
E: Env,
type Error = ConversionError
fn try_from_val( _env: &E, val: &&U32Val, ) -> Result<Val, <Val as TryFromVal<E, &U32Val>>::Error>
Source§impl<E> TryFromVal<E, U32Val> for Valwhere
E: Env,
impl<E> TryFromVal<E, U32Val> for Valwhere
E: Env,
type Error = ConversionError
fn try_from_val( _env: &E, val: &U32Val, ) -> Result<Val, <Val as TryFromVal<E, U32Val>>::Error>
Source§impl<E> TryFromVal<E, Val> for U32Valwhere
E: Env,
impl<E> TryFromVal<E, Val> for U32Valwhere
E: Env,
type Error = ConversionError
fn try_from_val( _env: &E, val: &Val, ) -> Result<U32Val, <U32Val as TryFromVal<E, Val>>::Error>
impl Copy for U32Val
Auto Trait Implementations§
impl Freeze for U32Val
impl RefUnwindSafe for U32Val
impl Send for U32Val
impl Sync for U32Val
impl Unpin for U32Val
impl UnwindSafe for U32Val
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