pub struct ChunkMetadataWithScore {
pub chunk_html: Option<Option<String>>,
pub created_at: String,
pub dataset_id: Uuid,
pub id: Uuid,
pub link: Option<Option<String>>,
pub metadata: Option<Option<Value>>,
pub score: f32,
pub tag_set: Option<Option<String>>,
pub time_stamp: Option<Option<String>>,
pub tracking_id: Option<Option<String>>,
pub updated_at: String,
pub weight: f64,
}
Fields§
§chunk_html: Option<Option<String>>
§created_at: String
§dataset_id: Uuid
§id: Uuid
§link: Option<Option<String>>
§metadata: Option<Option<Value>>
§score: f32
§tag_set: Option<Option<String>>
§time_stamp: Option<Option<String>>
§tracking_id: Option<Option<String>>
§updated_at: String
§weight: f64
Implementations§
Trait Implementations§
Source§impl Clone for ChunkMetadataWithScore
impl Clone for ChunkMetadataWithScore
Source§fn clone(&self) -> ChunkMetadataWithScore
fn clone(&self) -> ChunkMetadataWithScore
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 ChunkMetadataWithScore
impl Debug for ChunkMetadataWithScore
Source§impl Default for ChunkMetadataWithScore
impl Default for ChunkMetadataWithScore
Source§fn default() -> ChunkMetadataWithScore
fn default() -> ChunkMetadataWithScore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChunkMetadataWithScore
impl<'de> Deserialize<'de> for ChunkMetadataWithScore
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
Source§impl PartialEq for ChunkMetadataWithScore
impl PartialEq for ChunkMetadataWithScore
Source§impl Serialize for ChunkMetadataWithScore
impl Serialize for ChunkMetadataWithScore
impl StructuralPartialEq for ChunkMetadataWithScore
Auto Trait Implementations§
impl Freeze for ChunkMetadataWithScore
impl RefUnwindSafe for ChunkMetadataWithScore
impl Send for ChunkMetadataWithScore
impl Sync for ChunkMetadataWithScore
impl Unpin for ChunkMetadataWithScore
impl UnwindSafe for ChunkMetadataWithScore
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