pub struct CodeClimateLocation {
pub path: String,
pub lines: CodeClimateLines,
}Expand description
Location block inside CodeClimateIssue::location.
Fields§
§path: StringFile path relative to the analysed root.
lines: CodeClimateLinesWrapper carrying the line range so the schema lines up with CodeClimate’s spec.
Trait Implementations§
Source§impl Clone for CodeClimateLocation
impl Clone for CodeClimateLocation
Source§impl Debug for CodeClimateLocation
impl Debug for CodeClimateLocation
Auto Trait Implementations§
impl Freeze for CodeClimateLocation
impl RefUnwindSafe for CodeClimateLocation
impl Send for CodeClimateLocation
impl Sync for CodeClimateLocation
impl Unpin for CodeClimateLocation
impl UnsafeUnpin for CodeClimateLocation
impl UnwindSafe for CodeClimateLocation
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