pub struct DebugNeighbor {
pub node_id: i32,
pub vector_id: String,
pub field: String,
pub distance: f64,
pub metadata: HashMap<String, Value>,
}Fields§
§node_id: i32§vector_id: String§field: String§distance: f64§metadata: HashMap<String, Value>Trait Implementations§
Source§impl Clone for DebugNeighbor
impl Clone for DebugNeighbor
Source§fn clone(&self) -> DebugNeighbor
fn clone(&self) -> DebugNeighbor
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 moreSource§impl Debug for DebugNeighbor
impl Debug for DebugNeighbor
Source§impl<'de> Deserialize<'de> for DebugNeighbor
impl<'de> Deserialize<'de> for DebugNeighbor
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DebugNeighbor
impl RefUnwindSafe for DebugNeighbor
impl Send for DebugNeighbor
impl Sync for DebugNeighbor
impl Unpin for DebugNeighbor
impl UnsafeUnpin for DebugNeighbor
impl UnwindSafe for DebugNeighbor
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