pub type MutableHandleId<'a> = MutableHandle<'a, jsid>;
Aliased Type§
struct MutableHandleId<'a> {
pub(crate) ptr: *mut PropertyKey,
anchor: PhantomData<&'a mut PropertyKey>,
}
Fields§
§ptr: *mut PropertyKey
§anchor: PhantomData<&'a mut PropertyKey>
Implementations
Source§impl<'a, T> MutableHandle<'a, T>
impl<'a, T> MutableHandle<'a, T>
pub unsafe fn from_marked_location(ptr: *mut T) -> Self
pub unsafe fn from_raw(handle: RawMutableHandle<T>) -> Self
pub fn handle(&self) -> Handle<'_, T>
pub fn new(ptr: &'a mut T) -> Self
pub fn get(&self) -> Twhere
T: Copy,
pub fn set(&mut self, v: T)where
T: Copy,
pub(crate) fn raw(&mut self) -> RawMutableHandle<T>
Trait Implementations
Source§impl<'a, T: Clone + 'a> Clone for MutableHandle<'a, T>
impl<'a, T: Clone + 'a> Clone for MutableHandle<'a, T>
Source§fn clone(&self) -> MutableHandle<'a, T>
fn clone(&self) -> MutableHandle<'a, T>
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<'a, T> DerefMut for MutableHandle<'a, T>
impl<'a, T> DerefMut for MutableHandle<'a, T>
Source§impl<'a, T> IntoHandle for MutableHandle<'a, T>
impl<'a, T> IntoHandle for MutableHandle<'a, T>
Source§impl<'a, T> IntoMutableHandle for MutableHandle<'a, T>
impl<'a, T> IntoMutableHandle for MutableHandle<'a, T>
Source§fn into_handle_mut(self) -> RawMutableHandle<T>
fn into_handle_mut(self) -> RawMutableHandle<T>
Convert this object to a mutable handle.