Expand description
This crate provides functions for aligning addresses.
Align
is implemented for all unsigned integers and provides methods for:
This crate is based on work from the x86_64
crate, but is available for all architectures and all unsigned integer types.
§Examples
use align_address::Align;
assert_eq!(123_u64.align_up(2), 124);
Traits§
- Align
- An adress that can be aligned.
Functions§
- u8_
align_ down - Align address downwards.
- u8_
align_ up - Align address upwards.
- u8_
is_ aligned_ to - Checks whether the address has the demanded alignment.
- u16_
align_ down - Align address downwards.
- u16_
align_ up - Align address upwards.
- u16_
is_ aligned_ to - Checks whether the address has the demanded alignment.
- u32_
align_ down - Align address downwards.
- u32_
align_ up - Align address upwards.
- u32_
is_ aligned_ to - Checks whether the address has the demanded alignment.
- u64_
align_ down - Align address downwards.
- u64_
align_ up - Align address upwards.
- u64_
is_ aligned_ to - Checks whether the address has the demanded alignment.
- u128_
align_ down - Align address downwards.
- u128_
align_ up - Align address upwards.
- u128_
is_ aligned_ to - Checks whether the address has the demanded alignment.
- usize_
align_ down - Align address downwards.
- usize_
align_ up - Align address upwards.
- usize_
is_ aligned_ to - Checks whether the address has the demanded alignment.