pub struct CodeClimateOutput(pub Vec<CodeClimateIssue>);Expand description
Envelope emitted by fallow --format codeclimate and
fallow --format gitlab-codequality. GitLab Code Quality consumes the
same shape. The wire form is a bare JSON array, not an object.
Tuple Fields§
§0: Vec<CodeClimateIssue>Trait Implementations§
Source§impl Clone for CodeClimateOutput
impl Clone for CodeClimateOutput
Source§impl Debug for CodeClimateOutput
impl Debug for CodeClimateOutput
Auto Trait Implementations§
impl Freeze for CodeClimateOutput
impl RefUnwindSafe for CodeClimateOutput
impl Send for CodeClimateOutput
impl Sync for CodeClimateOutput
impl Unpin for CodeClimateOutput
impl UnsafeUnpin for CodeClimateOutput
impl UnwindSafe for CodeClimateOutput
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