#[repr(C)]pub struct RefTable {
pub device_info_table: *const DeviceInfoTable,
pub ble_table: *const BleTable,
pub thread_table: *const ThreadTable,
pub sys_table: *const SysTable,
pub mem_manager_table: *const MemManagerTable,
pub traces_table: *const TracesTable,
pub mac_802_15_4_table: *const Mac802_15_4Table,
pub zigbee_table: *const ZigbeeTable,
pub lld_tests_table: *const LldTestsTable,
pub ble_lld_table: *const BleLldTable,
}
Expand description
Reference table. Contains pointers to all other tables.
Fields§
§device_info_table: *const DeviceInfoTable
§ble_table: *const BleTable
§thread_table: *const ThreadTable
§sys_table: *const SysTable
§mem_manager_table: *const MemManagerTable
§traces_table: *const TracesTable
§mac_802_15_4_table: *const Mac802_15_4Table
§zigbee_table: *const ZigbeeTable
§lld_tests_table: *const LldTestsTable
§ble_lld_table: *const BleLldTable
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RefTable
impl RefUnwindSafe for RefTable
impl !Send for RefTable
impl !Sync for RefTable
impl Unpin for RefTable
impl UnwindSafe for RefTable
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