Struct std::boxed::ThinBox

source ·
pub struct ThinBox<T>where
    T: ?Sized,{ /* private fields */ }
🔬This is a nightly-only experimental API. (thin_box #92791)
Expand description

ThinBox.

用于堆分配的瘦指针,与 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));
Run

Implementations§

source§

impl<T> ThinBox<T>

source

pub fn new(value: T) -> ThinBox<T>

🔬This is a nightly-only experimental API. (thin_box #92791)

将类型移动到堆,并将其 Metadata 存储在堆分配而不是栈中。

Examples
#![feature(thin_box)]
use std::boxed::ThinBox;

let five = ThinBox::new(5);
Run
source§

impl<Dyn> ThinBox<Dyn>where Dyn: ?Sized,

source

pub fn new_unsize<T>(value: T) -> ThinBox<Dyn>where T: Unsize<Dyn>,

🔬This is a nightly-only experimental API. (thin_box #92791)

将类型移动到堆,并将其 Metadata 存储在堆分配而不是栈中。

Examples
#![feature(thin_box)]
use std::boxed::ThinBox;

let thin_slice = ThinBox::<[i32]>::new_unsize([1, 2, 3, 4]);
Run

Trait Implementations§

source§

impl<T> Debug for ThinBox<T>where T: Debug + ?Sized,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

使用给定的格式化程序格式化该值。 Read more
source§

impl<T> Deref for ThinBox<T>where T: ?Sized,

§

type Target = T

解引用后的结果类型。
source§

fn deref(&self) -> &T

解引用值。
source§

impl<T> DerefMut for ThinBox<T>where T: ?Sized,

source§

fn deref_mut(&mut self) -> &mut T

可变地解引用该值。
source§

impl<T> Display for ThinBox<T>where T: Display + ?Sized,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

使用给定的格式化程序格式化该值。 Read more
source§

impl<T> Drop for ThinBox<T>where T: ?Sized,

source§

fn drop(&mut self)

执行此类型的析构函数。 Read more
source§

impl<T> Error for ThinBox<T>where T: Error + ?Sized,

source§

fn source(&self) -> Option<&(dyn Error + 'static)>

此错误的下级来源 (如果有)。 Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access #99301)
提供对用于错误报告的上下文的基于类型的访问。 Read more
source§

impl<T> Send for ThinBox<T>where T: Send + ?Sized,

如果 TSend,则 ThinBox<T>Send,因为数据是拥有所有权的。

source§

impl<T> Sync for ThinBox<T>where T: Sync + ?Sized,

如果 TSync,则 ThinBox<T>Sync,因为数据是拥有所有权的。

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<E> Provider for Ewhere E: Error + ?Sized,

source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (provide_any #96024)
数据提供者应实现此方法以提供他们能够通过使用 demand 提供的所有值。 Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

将给定值转换为 StringRead more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。