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