pub struct RadarHint {
pub chunk_id: String,
pub title: String,
pub span: SourceSpan,
pub capabilities: Vec<String>,
pub preferred_codec: Option<String>,
pub confidence: f64,
}Expand description
Ranked, confidence-scored hint for an Atelier operation.
Fields§
§chunk_id: StringStable chunk id from the index.
title: StringOne-line purpose.
span: SourceSpanLive source span.
capabilities: Vec<String>Capability labels attached to the chunk.
preferred_codec: Option<String>Preferred codec form for viewing or editing the chunk.
confidence: f64F4-derived confidence in 0.0..=1.0.
Trait Implementations§
impl StructuralPartialEq for RadarHint
Auto Trait Implementations§
impl Freeze for RadarHint
impl RefUnwindSafe for RadarHint
impl Send for RadarHint
impl Sync for RadarHint
impl Unpin for RadarHint
impl UnsafeUnpin for RadarHint
impl UnwindSafe for RadarHint
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