pub struct UpsertOptions<K, V>{
pub equals: Option<IndexEqualsFn<K, V>>,
}Expand description
Per-call upsert options for ReactiveIndex::upsert.
Fields§
§equals: Option<IndexEqualsFn<K, V>>Per-call equals override. Takes precedence over the factory-level equals.
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for UpsertOptions<K, V>
impl<K, V> !RefUnwindSafe for UpsertOptions<K, V>
impl<K, V> Send for UpsertOptions<K, V>
impl<K, V> Sync for UpsertOptions<K, V>
impl<K, V> Unpin for UpsertOptions<K, V>
impl<K, V> UnsafeUnpin for UpsertOptions<K, V>
impl<K, V> !UnwindSafe for UpsertOptions<K, V>
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