pub struct BoundaryLintFinding {
pub path: String,
pub line: usize,
pub column: usize,
pub rule_id: String,
pub severity: String,
pub callee: String,
pub category: String,
pub message: String,
pub suggestion: String,
}Fields§
§path: String§line: usize§column: usize§rule_id: String§severity: String§callee: String§category: String§message: String§suggestion: StringTrait Implementations§
Source§impl Clone for BoundaryLintFinding
impl Clone for BoundaryLintFinding
Source§fn clone(&self) -> BoundaryLintFinding
fn clone(&self) -> BoundaryLintFinding
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 BoundaryLintFinding
impl RefUnwindSafe for BoundaryLintFinding
impl Send for BoundaryLintFinding
impl Sync for BoundaryLintFinding
impl Unpin for BoundaryLintFinding
impl UnsafeUnpin for BoundaryLintFinding
impl UnwindSafe for BoundaryLintFinding
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