Struct mariadb_sys::KEY_PAIR
source · #[repr(C)]pub struct KEY_PAIR {
pub old_key: *mut KEY,
pub new_key: *mut KEY,
}
Expand description
Structure describing changes to an index to be caused by ALTER TABLE.
Fields§
§old_key: *mut KEY
Pointer to KEY object describing old version of index in TABLE::key_info array for TABLE instance representing old version of table.
new_key: *mut KEY
Pointer to KEY object describing new version of index in Alter_inplace_info::key_info_buffer array.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for KEY_PAIR
impl !Send for KEY_PAIR
impl !Sync for KEY_PAIR
impl Unpin for KEY_PAIR
impl !UnwindSafe for KEY_PAIR
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