#[repr(C)]pub struct k_obj_type {
    pub node: sys_snode_t,
    pub list: sys_slist_t,
    pub id: u32,
    pub obj_core_offset: usize,
}Expand description
Object type structure
Fields§
§node: sys_snode_t< Node within list of object types
list: sys_slist_t< List of objects of this object type
id: u32< Unique type ID
obj_core_offset: usize< Offset to obj_core field
Trait Implementations§
Source§impl Debug for k_obj_type
 
impl Debug for k_obj_type
Auto Trait Implementations§
impl Freeze for k_obj_type
impl RefUnwindSafe for k_obj_type
impl !Send for k_obj_type
impl !Sync for k_obj_type
impl Unpin for k_obj_type
impl UnwindSafe for k_obj_type
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