redox/kernel/paging/mod.rs

7 lines
178 B
Rust
Raw Normal View History

/// A newtype representing a virtual address.
#[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct Virtual {
/// The inner value.
pub inner: usize,
}