pub struct UmaBox<T: ?Sized>(*mut T);
Expand description
Encapsulates an object allocated from a UMA zone.
Tuple Fields§
§0: *mut T
Trait Implementations§
impl<T: Send + ?Sized> Send for UmaBox<T>
impl<T: Sync + ?Sized> Sync for UmaBox<T>
Auto Trait Implementations§
impl<T> Freeze for UmaBox<T>where
T: ?Sized,
impl<T> RefUnwindSafe for UmaBox<T>where
T: RefUnwindSafe + ?Sized,
impl<T> Unpin for UmaBox<T>where
T: ?Sized,
impl<T> UnwindSafe for UmaBox<T>where
T: RefUnwindSafe + ?Sized,
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