pub struct PreparedIndexMutation {
pub store: &'static LocalKey<RefCell<IndexStore>>,
pub key: RawIndexKey,
pub value: Option<RawIndexEntry>,
}Expand description
PreparedIndexMutation
Mechanical index mutation derived from a row op.
Fields§
§store: &'static LocalKey<RefCell<IndexStore>>§key: RawIndexKey§value: Option<RawIndexEntry>Trait Implementations§
Source§impl Clone for PreparedIndexMutation
impl Clone for PreparedIndexMutation
Source§fn clone(&self) -> PreparedIndexMutation
fn clone(&self) -> PreparedIndexMutation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PreparedIndexMutation
impl RefUnwindSafe for PreparedIndexMutation
impl Send for PreparedIndexMutation
impl Sync for PreparedIndexMutation
impl Unpin for PreparedIndexMutation
impl UnsafeUnpin for PreparedIndexMutation
impl UnwindSafe for PreparedIndexMutation
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