pub struct PackLintReport {
pub errors: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Pack lint report.
Fields§
§errors: Vec<String>Collected errors.
warnings: Vec<String>Collected warnings.
Implementations§
Trait Implementations§
Source§impl Clone for PackLintReport
impl Clone for PackLintReport
Source§fn clone(&self) -> PackLintReport
fn clone(&self) -> PackLintReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PackLintReport
impl Debug for PackLintReport
Source§impl PartialEq for PackLintReport
impl PartialEq for PackLintReport
Source§fn eq(&self, other: &PackLintReport) -> bool
fn eq(&self, other: &PackLintReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PackLintReport
impl StructuralPartialEq for PackLintReport
Auto Trait Implementations§
impl Freeze for PackLintReport
impl RefUnwindSafe for PackLintReport
impl Send for PackLintReport
impl Sync for PackLintReport
impl Unpin for PackLintReport
impl UnsafeUnpin for PackLintReport
impl UnwindSafe for PackLintReport
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