pub struct Summary {
pub id: i64,
pub symbol_name: String,
pub file_path: String,
pub content_hash: String,
pub summary: String,
pub entities: Option<Vec<Entity>>,
pub relationships: Option<Vec<Relationship>>,
pub concept_labels: Option<Vec<String>>,
pub extracted_at: String,
pub model: String,
pub tokens_input: Option<i64>,
pub tokens_output: Option<i64>,
}Fields§
§id: i64§symbol_name: String§file_path: String§content_hash: String§summary: String§entities: Option<Vec<Entity>>§relationships: Option<Vec<Relationship>>§concept_labels: Option<Vec<String>>§extracted_at: String§model: String§tokens_input: Option<i64>§tokens_output: Option<i64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Summary
impl<'de> Deserialize<'de> for Summary
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 Summary
impl RefUnwindSafe for Summary
impl Send for Summary
impl Sync for Summary
impl Unpin for Summary
impl UnsafeUnpin for Summary
impl UnwindSafe for Summary
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