pub struct GithubFormatter;Expand description
GitHub Actions workflow command formatter.
Outputs diagnostics as ::error and ::warning commands that GitHub Actions
renders as annotations on pull requests and commits.
See: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions
Output format:
::warning file=example.hsml,line=1,col=7,endLine=1,endColumn=11,title=W002::Duplicate class 'foo'
::error file=example.hsml,line=1,col=1,title=E001::Tag name must start with an ASCII letterTrait Implementations§
Auto Trait Implementations§
impl Freeze for GithubFormatter
impl RefUnwindSafe for GithubFormatter
impl Send for GithubFormatter
impl Sync for GithubFormatter
impl Unpin for GithubFormatter
impl UnsafeUnpin for GithubFormatter
impl UnwindSafe for GithubFormatter
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