Crates.io | os_units |
lib.rs | os_units |
version | 0.4.2 |
source | src |
created_at | 2020-09-06 05:20:13.072376 |
updated_at | 2021-06-14 06:51:52.905979 |
description | A library which provides unit types for writing OS. |
homepage | |
repository | https://github.com/toku-sa-n/os_units |
max_upload_size | |
id | 285303 |
size | 36,397 |
This crate provides a data structure for byte size. With the
x86_64
crate, you can easily convert
the size of physical memory pages into bytes, and bytes into the number of physical memory
pages.
use os_units::Bytes;
use x86_64::structures::paging::{PageSize, Size4KiB};
let bytes_of_kernel = Bytes::new(314159);
let pages_of_kernel = bytes_of_kernel.as_num_of_pages::<Size4KiB>();
assert_eq!(pages_of_kernel.as_usize(), 77);
let bytes_of_pages = pages_of_kernel.as_bytes();
assert_eq!(bytes_of_pages.as_usize(), 315392);
License: MIT OR Apache-2.0