pub type pm_context_node_t = pm_context_node;Expand description
This is a node in a linked list of contexts.
Aliased Type§
#[repr(C)]pub struct pm_context_node_t {
pub context: u32,
pub prev: *mut pm_context_node,
}Fields§
§context: u32The context that this node represents.
prev: *mut pm_context_nodeA pointer to the previous context in the linked list.