pub struct StoreHandle<T> { /* private fields */ }
Expand description
Handle to an object managed by a context.
Internally this is just an integer index into a context. A reference to the context must be passed in separately to access the actual object.
Implementations§
Source§impl<T: StoreObject> StoreHandle<T>
impl<T: StoreObject> StoreHandle<T>
Sourcepub fn new(ctx: &mut StoreObjects, val: T) -> Self
pub fn new(ctx: &mut StoreObjects, val: T) -> Self
Moves the given object into a context and returns a handle to it.
Sourcepub fn get<'a>(&self, ctx: &'a StoreObjects) -> &'a T
pub fn get<'a>(&self, ctx: &'a StoreObjects) -> &'a T
Returns a reference to the object that this handle points to.
Sourcepub fn get_mut<'a>(&self, ctx: &'a mut StoreObjects) -> &'a mut T
pub fn get_mut<'a>(&self, ctx: &'a mut StoreObjects) -> &'a mut T
Returns a mutable reference to the object that this handle points to.
Sourcepub fn internal_handle(&self) -> InternalStoreHandle<T>
pub fn internal_handle(&self) -> InternalStoreHandle<T>
Returns the internal handle contains within this handle.
Sourcepub fn set_store_id(&mut self, id: StoreId)
pub fn set_store_id(&mut self, id: StoreId)
Overrides the store id with a new ID
Sourcepub unsafe fn from_internal(
id: StoreId,
internal: InternalStoreHandle<T>,
) -> Self
pub unsafe fn from_internal( id: StoreId, internal: InternalStoreHandle<T>, ) -> Self
Constructs a StoreHandle
from a StoreId
and an InternalStoreHandle
.
§Safety
Handling InternalStoreHandle
values is unsafe because they do not track context ID.
Trait Implementations§
Source§impl<T> Clone for StoreHandle<T>
impl<T> Clone for StoreHandle<T>
Source§impl<T: StoreObject> Debug for StoreHandle<T>
impl<T: StoreObject> Debug for StoreHandle<T>
Source§impl<T> Hash for StoreHandle<T>
impl<T> Hash for StoreHandle<T>
Source§impl<T: StoreObject> PartialEq for StoreHandle<T>
impl<T: StoreObject> PartialEq for StoreHandle<T>
impl<T: StoreObject> Eq for StoreHandle<T>
Auto Trait Implementations§
impl<T> Freeze for StoreHandle<T>
impl<T> RefUnwindSafe for StoreHandle<T>
impl<T> Send for StoreHandle<T>
impl<T> Sync for StoreHandle<T>
impl<T> Unpin for StoreHandle<T>
impl<T> UnwindSafe for StoreHandle<T>
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.