pub struct SurrealExistingNodeRecord {
pub id: Value,
pub source_metadata: Option<ConnectorMetadata>,
pub context_summary: Option<String>,
pub embedding: Option<Vec<f32>>,
pub embedding_model: Option<String>,
pub embedding_dimensions: Option<usize>,
pub embedded_at: Option<String>,
}Fields§
§id: Value§source_metadata: Option<ConnectorMetadata>§context_summary: Option<String>§embedding: Option<Vec<f32>>§embedding_model: Option<String>§embedding_dimensions: Option<usize>§embedded_at: Option<String>Trait Implementations§
Source§impl Clone for SurrealExistingNodeRecord
impl Clone for SurrealExistingNodeRecord
Source§fn clone(&self) -> SurrealExistingNodeRecord
fn clone(&self) -> SurrealExistingNodeRecord
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 SurrealExistingNodeRecord
impl Debug for SurrealExistingNodeRecord
Source§impl<'de> Deserialize<'de> for SurrealExistingNodeRecord
impl<'de> Deserialize<'de> for SurrealExistingNodeRecord
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 SurrealExistingNodeRecord
impl RefUnwindSafe for SurrealExistingNodeRecord
impl Send for SurrealExistingNodeRecord
impl Sync for SurrealExistingNodeRecord
impl Unpin for SurrealExistingNodeRecord
impl UnsafeUnpin for SurrealExistingNodeRecord
impl UnwindSafe for SurrealExistingNodeRecord
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