pub enum TableKind {
Structure,
Table,
}Variants§
Structure
Compact structures, lower size and better performance, any changes will break compatibility
- ❌ change order
- ❌ add fields
- ❌ change types
- ❌ delete fields
Table
Structure with vtable, any changes will break compatibility
- ✔️ change order
- ✔️ add fields
- ❌ change types
- ❌ delete fields
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableKind
impl RefUnwindSafe for TableKind
impl Send for TableKind
impl Sync for TableKind
impl Unpin for TableKind
impl UnwindSafe for TableKind
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