Struct std::ptr::Alignment

source ·
#[repr(transparent)]
pub struct Alignment(_);
🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)
Expand description

一种存储 usize 的类型,它是 2 的幂,因此表示 rust 抽象机中可能的对齐方式。

请注意,虽然在这种类型中可以表示特别大的对齐,但实际分配器和链接器可能不支持。

Implementations§

source§

impl Alignment

source

pub const MIN: Alignment = Self(AlignmentEnum::_Align1Shl0)

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

尽可能小的对齐方式, 1.

所有地址总是至少对齐这么多。

Examples
#![feature(ptr_alignment_type)]
use std::ptr::Alignment;

assert_eq!(Alignment::MIN.as_usize(), 1);
Run
source

pub const fn of<T>() -> Alignment

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

返回类型的对齐方式。

这提供与 mem::align_of 相同的数值,但在 Alignment 而不是 usize 中。

source

pub const fn new(align: usize) -> Option<Alignment>

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

usize 创建 Alignment,如果不是 2 的幂,则返回 None

请注意,0 不是 2 的幂,也不是有效的对齐方式。

const: unstable · source

pub unsafe fn new_unchecked(align: usize) -> Alignment

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

usize 的二次幂创建 Alignment

Safety

align 必须是 2 的幂。

等效地,对于 0..usize::BITS 中的某些 exp,它必须是 1 << exp。 它必须不为零。

const: unstable · source

pub fn as_usize(self) -> usize

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

将对齐方式返回为 usize

source

pub const fn as_nonzero(self) -> NonZeroUsize

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

将对齐方式返回为 NonZeroUsize

source

pub fn log2(self) -> u32

🔬This is a nightly-only experimental API. (ptr_alignment_type #102070)

返回对齐的 base-2 对数。

这总是准确的,因为 self 代表 2 的幂。

Examples
#![feature(ptr_alignment_type)]
use std::ptr::Alignment;

assert_eq!(Alignment::of::<u8>().log2(), 0);
assert_eq!(Alignment::new(1024).unwrap().log2(), 10);
Run

Trait Implementations§

source§

impl Clone for Alignment

source§

fn clone(&self) -> Alignment

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl Debug for Alignment

source§

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

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

impl From<Alignment> for NonZeroUsize

source§

fn from(align: Alignment) -> NonZeroUsize

从输入类型转换为此类型。
source§

impl From<Alignment> for usize

source§

fn from(align: Alignment) -> usize

从输入类型转换为此类型。
source§

impl Hash for Alignment

source§

fn hash<H>(&self, state: &mut H)where H: Hasher,

将该值输入给定的 HasherRead more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

将这种类型的切片送入给定的 Hasher 中。 Read more
const: unstable · source§

impl Ord for Alignment

const: unstable · source§

fn cmp(&self, other: &Alignment) -> Ordering

此方法返回 selfother 之间的 OrderingRead more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

比较并返回两个值中的最大值。 Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

比较并返回两个值中的最小值。 Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

将值限制在某个时间间隔内。 Read more
source§

impl PartialEq<Alignment> for Alignment

source§

fn eq(&self, other: &Alignment) -> bool

此方法测试 selfother 值是否相等,并由 == 使用。
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

此方法测试 !=。 默认实现几乎总是足够的,并且不应在没有充分理由的情况下被覆盖。
const: unstable · source§

impl PartialOrd<Alignment> for Alignment

const: unstable · source§

fn partial_cmp(&self, other: &Alignment) -> Option<Ordering>

如果存在,则此方法返回 selfother 值之间的顺序。 Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

此方法测试的内容少于 (对于 selfother),并且由 < 操作员使用。 Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

此方法测试小于或等于 (对于 selfother),并且由 <= 运算符使用。 Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

此方法测试大于 (对于 selfother),并且由 > 操作员使用。 Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

此方法测试是否大于或等于 (对于 selfother),并且由 >= 运算符使用。 Read more
source§

impl TryFrom<NonZeroUsize> for Alignment

§

type Error = TryFromIntError

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

fn try_from( align: NonZeroUsize ) -> Result<Alignment, <Alignment as TryFrom<NonZeroUsize>>::Error>

执行转换。
source§

impl TryFrom<usize> for Alignment

§

type Error = TryFromIntError

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

fn try_from( align: usize ) -> Result<Alignment, <Alignment as TryFrom<usize>>::Error>

执行转换。
source§

impl Copy for Alignment

source§

impl Eq for Alignment

source§

impl StructuralEq for Alignment

source§

impl StructuralPartialEq for Alignment

Auto Trait Implementations§

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<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read 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>

执行转换。