Skip to main content

CursorMutSpecFns

Trait CursorMutSpecFns 

Source
pub trait CursorMutSpecFns<Key, Value>: View<V = CursorMutModel<Key, Value>> + Sized {
    // Required method
    spec fn final_map(self) -> Map<Key, Value>;
}
Expand description

Abstract and prophetic state for mutable B-tree cursors.

Required Methods§

Source

spec fn final_map(self) -> Map<Key, Value>

The contents of the borrowed map when this cursor’s borrow is resolved.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<'a, Key, Value, A> CursorMutSpecFns<Key, Value> for CursorMut<'a, Key, Value, A>

Source§

uninterp spec fn final_map(self) -> Map<Key, Value>

Implementors§