pub struct BoundaryLintReport {
pub passed: bool,
pub scanned_files: Vec<String>,
pub finding_count: usize,
pub findings: Vec<BoundaryLintFinding>,
}Fields§
§passed: bool§scanned_files: Vec<String>§finding_count: usize§findings: Vec<BoundaryLintFinding>Trait Implementations§
Source§impl Clone for BoundaryLintReport
impl Clone for BoundaryLintReport
Source§fn clone(&self) -> BoundaryLintReport
fn clone(&self) -> BoundaryLintReport
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 moreAuto Trait Implementations§
impl Freeze for BoundaryLintReport
impl RefUnwindSafe for BoundaryLintReport
impl Send for BoundaryLintReport
impl Sync for BoundaryLintReport
impl Unpin for BoundaryLintReport
impl UnsafeUnpin for BoundaryLintReport
impl UnwindSafe for BoundaryLintReport
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