pub struct PreparedPointKey { /* private fields */ }Expand description
Precomputed routing and exact-match metadata for repeated point lookups.
This token owns the original key bytes plus precomputed routing and hash-derived tag state so callers can reuse lookup preparation work while still preserving exact byte-for-byte key semantics on every hit.
Implementations§
Source§impl PreparedPointKey
impl PreparedPointKey
Sourcepub fn route(&self) -> EmbeddedKeyRoute
pub fn route(&self) -> EmbeddedKeyRoute
Returns the precomputed route for this key.
Trait Implementations§
Source§impl Clone for PreparedPointKey
impl Clone for PreparedPointKey
Source§fn clone(&self) -> PreparedPointKey
fn clone(&self) -> PreparedPointKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PreparedPointKey
impl Debug for PreparedPointKey
Source§impl PartialEq for PreparedPointKey
impl PartialEq for PreparedPointKey
Source§fn eq(&self, other: &PreparedPointKey) -> bool
fn eq(&self, other: &PreparedPointKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PreparedPointKey
impl StructuralPartialEq for PreparedPointKey
Auto Trait Implementations§
impl Freeze for PreparedPointKey
impl RefUnwindSafe for PreparedPointKey
impl Send for PreparedPointKey
impl Sync for PreparedPointKey
impl Unpin for PreparedPointKey
impl UnsafeUnpin for PreparedPointKey
impl UnwindSafe for PreparedPointKey
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