[][src]Struct rustc_target::abi::Align

pub struct Align { /* fields omitted */ }

Alignment of a type in bytes (always a power of two).

Methods

impl Align[src]

pub fn from_bits(bits: u64) -> Result<Align, String>[src]

pub fn from_bytes(align: u64) -> Result<Align, String>[src]

pub fn bytes(self) -> u64[src]

pub fn bits(self) -> u64[src]

pub fn max_for_offset(offset: Size) -> Align[src]

Computes the best alignment possible for the given offset (the largest power of two that the offset is a multiple of).

N.B., for an offset of 0, this happens to return 2^64.

pub fn restrict_for_offset(self, offset: Size) -> Align[src]

Lower the alignment, if necessary, such that the given offset is aligned to it (the offset is a multiple of the alignment).

Trait Implementations

impl Eq for Align[src]

impl Clone for Align[src]

impl PartialOrd<Align> for Align[src]

impl Ord for Align[src]

impl PartialEq<Align> for Align[src]

impl Copy for Align[src]

impl Hash for Align[src]

impl Debug for Align[src]

impl Encodable for Align[src]

impl Decodable for Align[src]

Auto Trait Implementations

impl Unpin for Align

impl Sync for Align

impl Send for Align

impl UnwindSafe for Align

impl RefUnwindSafe for Align

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<T> Erased for T[src]

impl<E> SpecializationError for E[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]