pub struct TrajectoryExport {
pub embedding: Vec<f32>,
pub quality: f32,
pub route: Option<String>,
pub context: Vec<String>,
pub timestamp: u64,
}Expand description
Single trajectory export
Fields§
§embedding: Vec<f32>Query embedding
quality: f32Quality score
route: Option<String>Model route (if any)
context: Vec<String>Context identifiers
timestamp: u64Timestamp
Trait Implementations§
Source§impl Clone for TrajectoryExport
impl Clone for TrajectoryExport
Source§fn clone(&self) -> TrajectoryExport
fn clone(&self) -> TrajectoryExport
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 TrajectoryExport
impl Debug for TrajectoryExport
Source§impl<'de> Deserialize<'de> for TrajectoryExport
impl<'de> Deserialize<'de> for TrajectoryExport
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 TrajectoryExport
impl RefUnwindSafe for TrajectoryExport
impl Send for TrajectoryExport
impl Sync for TrajectoryExport
impl Unpin for TrajectoryExport
impl UnwindSafe for TrajectoryExport
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