pub struct GitHubAnnotationResult {
pub lines: Vec<String>,
pub truncated: bool,
pub total_count: usize,
pub rendered_count: usize,
}Expand description
Result of GitHub annotation rendering.
Fields§
§lines: Vec<String>Rendered ::error/::warning/::notice lines.
truncated: boolWhether annotations were truncated due to cap.
total_count: usizeTotal number of annotations before capping.
rendered_count: usizeNumber of annotations actually rendered.
Auto Trait Implementations§
impl Freeze for GitHubAnnotationResult
impl RefUnwindSafe for GitHubAnnotationResult
impl Send for GitHubAnnotationResult
impl Sync for GitHubAnnotationResult
impl Unpin for GitHubAnnotationResult
impl UnsafeUnpin for GitHubAnnotationResult
impl UnwindSafe for GitHubAnnotationResult
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