Struct rustc_target::abi::Size [−][src]
pub struct Size { /* fields omitted */ }Size of a type in bytes.
Methods
impl Size[src]
impl Sizepub const ZERO: Size
ZERO: Size = <Self>::from_bytes(0)
pub fn from_bits(bits: u64) -> Size[src]
pub fn from_bits(bits: u64) -> Sizepub const fn from_bytes(bytes: u64) -> Size[src]
pub const fn from_bytes(bytes: u64) -> Sizepub fn bytes(self) -> u64[src]
pub fn bytes(self) -> u64pub fn bits(self) -> u64[src]
pub fn bits(self) -> u64pub fn abi_align(self, align: Align) -> Size[src]
pub fn abi_align(self, align: Align) -> Sizepub fn is_abi_aligned(self, align: Align) -> bool[src]
pub fn is_abi_aligned(self, align: Align) -> boolpub fn checked_add<C: HasDataLayout>(self, offset: Size, cx: C) -> Option<Size>[src]
pub fn checked_add<C: HasDataLayout>(self, offset: Size, cx: C) -> Option<Size>pub fn checked_mul<C: HasDataLayout>(self, count: u64, cx: C) -> Option<Size>[src]
pub fn checked_mul<C: HasDataLayout>(self, count: u64, cx: C) -> Option<Size>Trait Implementations
impl Copy for Size[src]
impl Copy for Sizeimpl Clone for Size[src]
impl Clone for Sizefn clone(&self) -> Size[src]
fn clone(&self) -> SizeReturns 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 PartialEq for Size[src]
impl PartialEq for Sizefn eq(&self, other: &Size) -> bool[src]
fn eq(&self, other: &Size) -> boolThis 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) -> boolThis method tests for !=.
impl Eq for Size[src]
impl Eq for Sizeimpl PartialOrd for Size[src]
impl PartialOrd for Sizefn 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) -> boolThis 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) -> boolThis 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) -> boolThis 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) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Size[src]
impl Ord for Sizefn cmp(&self, other: &Size) -> Ordering[src]
fn cmp(&self, other: &Size) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for Size[src]
impl Hash for Sizefn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)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 Debug for Size[src]
impl Debug for Sizefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Encodable for Size[src]
impl Encodable for Sizeimpl Decodable for Size[src]
impl Decodable for Sizeimpl Add for Size[src]
impl Add for Sizetype Output = Size
The resulting type after applying the + operator.
fn add(self, other: Size) -> Size[src]
fn add(self, other: Size) -> SizePerforms the + operation.
impl Sub for Size[src]
impl Sub for Sizetype Output = Size
The resulting type after applying the - operator.
fn sub(self, other: Size) -> Size[src]
fn sub(self, other: Size) -> SizePerforms the - operation.
impl Mul<Size> for u64[src]
impl Mul<Size> for u64type Output = Size
The resulting type after applying the * operator.
fn mul(self, size: Size) -> Size[src]
fn mul(self, size: Size) -> SizePerforms the * operation.
impl Mul<u64> for Size[src]
impl Mul<u64> for Sizetype Output = Size
The resulting type after applying the * operator.
fn mul(self, count: u64) -> Size[src]
fn mul(self, count: u64) -> SizePerforms the * operation.
impl AddAssign for Size[src]
impl AddAssign for Sizefn add_assign(&mut self, other: Size)[src]
fn add_assign(&mut self, other: Size)Performs the += operation.