pub struct IntentEntry {Show 15 fields
pub id: String,
pub entry_type: EntryType,
pub state: EntryState,
pub title: String,
pub body: Option<String>,
pub evidence: Vec<String>,
pub links: Vec<Link>,
pub confidence: f32,
pub tags: Vec<String>,
pub project: Option<String>,
pub agent: Option<String>,
pub session_id: Option<String>,
pub timestamp: Option<String>,
pub date: String,
pub source_chunk: String,
}Fields§
§id: String§entry_type: EntryType§state: EntryState§title: String§body: Option<String>§evidence: Vec<String>§links: Vec<Link>§confidence: f32§project: Option<String>§agent: Option<String>§session_id: Option<String>§timestamp: Option<String>§date: String§source_chunk: StringImplementations§
Trait Implementations§
Source§impl Clone for IntentEntry
impl Clone for IntentEntry
Source§fn clone(&self) -> IntentEntry
fn clone(&self) -> IntentEntry
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 IntentEntry
impl Debug for IntentEntry
Source§impl<'de> Deserialize<'de> for IntentEntry
impl<'de> Deserialize<'de> for IntentEntry
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 IntentEntry
impl PartialEq for IntentEntry
Source§impl Serialize for IntentEntry
impl Serialize for IntentEntry
impl Eq for IntentEntry
impl StructuralPartialEq for IntentEntry
Auto Trait Implementations§
impl Freeze for IntentEntry
impl RefUnwindSafe for IntentEntry
impl Send for IntentEntry
impl Sync for IntentEntry
impl Unpin for IntentEntry
impl UnsafeUnpin for IntentEntry
impl UnwindSafe for IntentEntry
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