pub struct TableTemplate {
pub relation_id: u32,
pub free_list: u32,
pub index_data: &'static [u8],
}Expand description
A table as macOS first writes it: its relation, the free-list field it sets while the table is empty, and the index blob that declares its indexes.
Fields§
§relation_id: u32§free_list: u32§index_data: &'static [u8]Auto Trait Implementations§
impl Freeze for TableTemplate
impl RefUnwindSafe for TableTemplate
impl Send for TableTemplate
impl Sync for TableTemplate
impl Unpin for TableTemplate
impl UnsafeUnpin for TableTemplate
impl UnwindSafe for TableTemplate
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