pub struct MemoryNeighborhoodPoint {
pub point_id: String,
pub parent_id: Option<String>,
pub kind: MemoryPointKind,
pub relation_depth: i32,
pub storage: Option<String>,
pub types: Option<String>,
}Fields§
§point_id: String§parent_id: Option<String>§kind: MemoryPointKind§relation_depth: i32§storage: Option<String>§types: Option<String>Trait Implementations§
Source§impl Clone for MemoryNeighborhoodPoint
impl Clone for MemoryNeighborhoodPoint
Source§fn clone(&self) -> MemoryNeighborhoodPoint
fn clone(&self) -> MemoryNeighborhoodPoint
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 MemoryNeighborhoodPoint
impl Debug for MemoryNeighborhoodPoint
Source§impl<'de> Deserialize<'de> for MemoryNeighborhoodPoint
impl<'de> Deserialize<'de> for MemoryNeighborhoodPoint
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
impl Eq for MemoryNeighborhoodPoint
Source§impl PartialEq for MemoryNeighborhoodPoint
impl PartialEq for MemoryNeighborhoodPoint
Source§fn eq(&self, other: &MemoryNeighborhoodPoint) -> bool
fn eq(&self, other: &MemoryNeighborhoodPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MemoryNeighborhoodPoint
impl Serialize for MemoryNeighborhoodPoint
impl StructuralPartialEq for MemoryNeighborhoodPoint
Auto Trait Implementations§
impl Freeze for MemoryNeighborhoodPoint
impl RefUnwindSafe for MemoryNeighborhoodPoint
impl Send for MemoryNeighborhoodPoint
impl Sync for MemoryNeighborhoodPoint
impl Unpin for MemoryNeighborhoodPoint
impl UnsafeUnpin for MemoryNeighborhoodPoint
impl UnwindSafe for MemoryNeighborhoodPoint
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