pub struct AnnotationRenderResult {
pub content: String,
pub truncated: bool,
pub total_count: usize,
pub rendered_count: usize,
}Expand description
Result of annotation rendering, tracking whether truncation occurred.
Fields§
§content: StringThe rendered markdown content for annotations.
truncated: boolWhether the annotations were truncated due to max_annotations cap.
total_count: usizeTotal number of annotations before truncation.
rendered_count: usizeNumber of annotations actually rendered.
Auto Trait Implementations§
impl Freeze for AnnotationRenderResult
impl RefUnwindSafe for AnnotationRenderResult
impl Send for AnnotationRenderResult
impl Sync for AnnotationRenderResult
impl Unpin for AnnotationRenderResult
impl UnsafeUnpin for AnnotationRenderResult
impl UnwindSafe for AnnotationRenderResult
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