pub struct ThinBox<T: ?Sized> {
ptr: WithOpaqueHeader,
_marker: PhantomData<T>,
}
🔬This is a nightly-only experimental API. (
thin_box
#92791)Expand description
ThinBox.
A thin pointer for heap allocation, regardless of T.
Examples
#![feature(thin_box)]
use std::boxed::ThinBox;
let five = ThinBox::new(5);
let thin_slice = ThinBox::<[i32]>::new_unsize([1, 2, 3, 4]);
use std::mem::{size_of, size_of_val};
let size_of_ptr = size_of::<*const ()>();
assert_eq!(size_of_ptr, size_of_val(&five));
assert_eq!(size_of_ptr, size_of_val(&thin_slice));
RunFields§
§ptr: WithOpaqueHeader
🔬This is a nightly-only experimental API. (
§thin_box
#92791)_marker: PhantomData<T>
🔬This is a nightly-only experimental API. (
thin_box
#92791)Implementations§
source§impl<Dyn: ?Sized> ThinBox<Dyn>
impl<Dyn: ?Sized> ThinBox<Dyn>
sourcepub fn new_unsize<T>(value: T) -> Selfwhere
T: Unsize<Dyn>,
🔬This is a nightly-only experimental API. (thin_box
#92791)
pub fn new_unsize<T>(value: T) -> Selfwhere T: Unsize<Dyn>,
thin_box
#92791)source§impl<T: ?Sized> ThinBox<T>
impl<T: ?Sized> ThinBox<T>
fn meta(&self) -> <T as Pointee>::Metadata
🔬This is a nightly-only experimental API. (
thin_box
#92791)fn data(&self) -> *mut u8
🔬This is a nightly-only experimental API. (
thin_box
#92791)fn with_header(&self) -> &WithHeader<<T as Pointee>::Metadata>
🔬This is a nightly-only experimental API. (
thin_box
#92791)Trait Implementations§
source§impl<T: ?Sized + Error> Error for ThinBox<T>
impl<T: ?Sized + Error> Error for ThinBox<T>
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
source§fn type_id(&self, _: Internal) -> TypeIdwhere
Self: 'static,
fn type_id(&self, _: Internal) -> TypeIdwhere Self: 'static,
🔬This is a nightly-only experimental API. (
error_type_id
#60784)Gets the
TypeId
of self
.1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl<T: ?Sized + Send> Send for ThinBox<T>
ThinBox<T>
is Send
if T
is Send
because the data is owned.
impl<T: ?Sized + Sync> Sync for ThinBox<T>
ThinBox<T>
is Sync
if T
is Sync
because the data is owned.
Auto Trait Implementations§
impl<T: ?Sized> RefUnwindSafe for ThinBox<T>where T: RefUnwindSafe,
impl<T: ?Sized> Unpin for ThinBox<T>where T: Unpin,
impl<T: ?Sized> UnwindSafe for ThinBox<T>where T: UnwindSafe,
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