pub enum KeyResolution {
Found(String),
QueueUntil(&'static [u8]),
Skip,
}Expand description
Result of attempting to resolve a primary key
Variants§
Found(String)
Primary key successfully resolved
QueueUntil(&'static [u8])
Queue this update until we see one of these instruction discriminators The discriminators identify which instructions can populate the reverse lookup
Skip
Skip this update entirely (don’t queue)
Auto Trait Implementations§
impl Freeze for KeyResolution
impl RefUnwindSafe for KeyResolution
impl Send for KeyResolution
impl Sync for KeyResolution
impl Unpin for KeyResolution
impl UnwindSafe for KeyResolution
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