Struct rustc::ty::layout::Size [−][src]
pub struct Size { raw: u64, }
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Size of a type in bytes.
Fields
raw: u64
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Methods
impl Size
[src]
impl Size
pub const ZERO: Size
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
ZERO: Size = <Self>::from_bytes(0)
pub fn from_bits(bits: u64) -> Size
[src]
pub fn from_bits(bits: u64) -> Size
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub const fn from_bytes(bytes: u64) -> Size
[src]
pub const fn from_bytes(bytes: u64) -> Size
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub fn bytes(self) -> u64
[src]
pub fn bytes(self) -> u64
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub fn bits(self) -> u64
[src]
pub fn bits(self) -> u64
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub fn abi_align(self, align: Align) -> Size
[src]
pub fn abi_align(self, align: Align) -> Size
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub fn is_abi_aligned(self, align: Align) -> bool
[src]
pub fn is_abi_aligned(self, align: Align) -> bool
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub fn checked_add<C>(self, offset: Size, cx: C) -> Option<Size> where
C: HasDataLayout,
[src]
pub fn checked_add<C>(self, offset: Size, cx: C) -> Option<Size> where
C: HasDataLayout,
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
pub fn checked_mul<C>(self, count: u64, cx: C) -> Option<Size> where
C: HasDataLayout,
[src]
pub fn checked_mul<C>(self, count: u64, cx: C) -> Option<Size> where
C: HasDataLayout,
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Trait Implementations
impl Clone for Size
[src]
impl Clone for Size
fn clone(&self) -> Size
[src]
fn clone(&self) -> Size
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for Size
[src]
impl Debug for Size
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Encodable for Size
[src]
impl Encodable for Size
fn encode<__S>(&self, s: &mut __S) -> Result<(), <__S as Encoder>::Error> where
__S: Encoder,
[src]
fn encode<__S>(&self, s: &mut __S) -> Result<(), <__S as Encoder>::Error> where
__S: Encoder,
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl Copy for Size
[src]
impl Copy for Size
impl Sub<Size> for Size
[src]
impl Sub<Size> for Size
type Output = Size
The resulting type after applying the -
operator.
fn sub(self, other: Size) -> Size
[src]
fn sub(self, other: Size) -> Size
Performs the -
operation.
impl Ord for Size
[src]
impl Ord for Size
fn cmp(&self, other: &Size) -> Ordering
[src]
fn cmp(&self, other: &Size) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Mul<u64> for Size
[src]
impl Mul<u64> for Size
type Output = Size
The resulting type after applying the *
operator.
fn mul(self, count: u64) -> Size
[src]
fn mul(self, count: u64) -> Size
Performs the *
operation.
impl Mul<Size> for u64
[src]
impl Mul<Size> for u64
type Output = Size
The resulting type after applying the *
operator.
fn mul(self, size: Size) -> Size
[src]
fn mul(self, size: Size) -> Size
Performs the *
operation.
impl Eq for Size
[src]
impl Eq for Size
fn assert_receiver_is_total_eq(&self)
[src]
fn assert_receiver_is_total_eq(&self)
impl Decodable for Size
[src]
impl Decodable for Size
fn decode<__D>(d: &mut __D) -> Result<Size, <__D as Decoder>::Error> where
__D: Decoder,
[src]
fn decode<__D>(d: &mut __D) -> Result<Size, <__D as Decoder>::Error> where
__D: Decoder,
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl AddAssign<Size> for Size
[src]
impl AddAssign<Size> for Size
fn add_assign(&mut self, other: Size)
[src]
fn add_assign(&mut self, other: Size)
Performs the +=
operation.
impl Add<Size> for Size
[src]
impl Add<Size> for Size
type Output = Size
The resulting type after applying the +
operator.
fn add(self, other: Size) -> Size
[src]
fn add(self, other: Size) -> Size
Performs the +
operation.
impl PartialOrd<Size> for Size
[src]
impl PartialOrd<Size> for Size
fn partial_cmp(&self, other: &Size) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Size) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Size) -> bool
[src]
fn lt(&self, other: &Size) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Size) -> bool
[src]
fn le(&self, other: &Size) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Size) -> bool
[src]
fn gt(&self, other: &Size) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Size) -> bool
[src]
fn ge(&self, other: &Size) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Hash for Size
[src]
impl Hash for Size
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl PartialEq<Size> for Size
[src]
impl PartialEq<Size> for Size
fn eq(&self, other: &Size) -> bool
[src]
fn eq(&self, other: &Size) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Size) -> bool
[src]
fn ne(&self, other: &Size) -> bool
This method tests for !=
.
impl<'gcx> HashStable<StableHashingContext<'gcx>> for Size
[src]
impl<'gcx> HashStable<StableHashingContext<'gcx>> for Size
fn hash_stable<W: StableHasherResult>(
&self,
hcx: &mut StableHashingContext<'gcx>,
hasher: &mut StableHasher<W>
)
[src]
fn hash_stable<W: StableHasherResult>(
&self,
hcx: &mut StableHashingContext<'gcx>,
hasher: &mut StableHasher<W>
)
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?