pub struct ContextQueryEntry {
pub path: String,
pub scope: Option<String>,
pub queried_at: DateTime<Utc>,
}Expand description
A record of one heddle context get call made during an agent session.
Fields§
§path: StringThe file path that was queried.
scope: Option<String>The scope filter used, if any (e.g. symbol:parse_manifest).
queried_at: DateTime<Utc>When the query was made.
Trait Implementations§
Source§impl Clone for ContextQueryEntry
impl Clone for ContextQueryEntry
Source§fn clone(&self) -> ContextQueryEntry
fn clone(&self) -> ContextQueryEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ContextQueryEntry
impl Debug for ContextQueryEntry
Source§impl<'de> Deserialize<'de> for ContextQueryEntry
impl<'de> Deserialize<'de> for ContextQueryEntry
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 ContextQueryEntry
impl RefUnwindSafe for ContextQueryEntry
impl Send for ContextQueryEntry
impl Sync for ContextQueryEntry
impl Unpin for ContextQueryEntry
impl UnsafeUnpin for ContextQueryEntry
impl UnwindSafe for ContextQueryEntry
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