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