pub enum ExternRef {}
Expand description
Support for externref
disabled at compile time because the gc
cargo
feature was not enabled.
Implementations§
source§impl ExternRef
impl ExternRef
pub fn data<'a, T>(
&self,
_store: impl Into<StoreContext<'a, T>>,
) -> Result<&'a (dyn Any + Send + Sync)>where
T: 'a,
pub fn data_mut<'a, T>(
&self,
_store: impl Into<StoreContextMut<'a, T>>,
) -> Result<&'a mut (dyn Any + Send + Sync)>where
T: 'a,
pub unsafe fn from_raw( _store: impl AsContextMut, raw: u32, ) -> Option<Rooted<Self>>
pub unsafe fn to_raw(&self, _store: impl AsContextMut) -> Result<u32>
Auto Trait Implementations§
impl Freeze for ExternRef
impl RefUnwindSafe for ExternRef
impl Send for ExternRef
impl Sync for ExternRef
impl Unpin for ExternRef
impl UnwindSafe for ExternRef
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more