Struct sel4_cspace::interface::mdb_node_t
source · pub struct mdb_node_t {
pub words: [usize; 2],
}
Fields§
§words: [usize; 2]
Implementations§
source§impl mdb_node_t
impl mdb_node_t
pub fn new( mdbNext: usize, mdbRevocable: usize, mdbFirstBadged: usize, mdbPrev: usize ) -> Self
pub fn get_next(&self) -> usize
pub fn set_next(&mut self, new_field: usize)
pub fn get_revocable(&self) -> usize
pub fn set_revocable(&mut self, new_field: usize)
pub fn get_first_badged(&self) -> usize
pub fn set_first_badged(&mut self, new_field: usize)
pub fn get_prev(&self) -> usize
pub fn set_prev(&mut self, new_field: usize)
pub fn get_type(&self) -> usize
Trait Implementations§
source§impl Clone for mdb_node_t
impl Clone for mdb_node_t
source§fn clone(&self) -> mdb_node_t
fn clone(&self) -> mdb_node_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for mdb_node_t
impl Debug for mdb_node_t
source§impl Default for mdb_node_t
impl Default for mdb_node_t
source§fn default() -> mdb_node_t
fn default() -> mdb_node_t
Returns the “default value” for a type. Read more
source§impl PartialEq<mdb_node_t> for mdb_node_t
impl PartialEq<mdb_node_t> for mdb_node_t
source§fn eq(&self, other: &mdb_node_t) -> bool
fn eq(&self, other: &mdb_node_t) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for mdb_node_t
impl Eq for mdb_node_t
impl StructuralEq for mdb_node_t
impl StructuralPartialEq for mdb_node_t
Auto Trait Implementations§
impl RefUnwindSafe for mdb_node_t
impl Send for mdb_node_t
impl Sync for mdb_node_t
impl Unpin for mdb_node_t
impl UnwindSafe for mdb_node_t
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more