pub struct ScanJsonFile {
pub path: String,
pub start: usize,
pub end: Option<usize>,
pub state: String,
pub desc: Option<String>,
}Expand description
JSON file reference for --scan --json output (PRD §0.14.4).
Fields§
§path: String§start: usize§end: Option<usize>§state: String§desc: Option<String>Trait Implementations§
Source§impl Clone for ScanJsonFile
impl Clone for ScanJsonFile
Source§fn clone(&self) -> ScanJsonFile
fn clone(&self) -> ScanJsonFile
Returns a duplicate of the value. Read more
1.0.0 · 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 ScanJsonFile
impl Debug for ScanJsonFile
Auto Trait Implementations§
impl Freeze for ScanJsonFile
impl RefUnwindSafe for ScanJsonFile
impl Send for ScanJsonFile
impl Sync for ScanJsonFile
impl Unpin for ScanJsonFile
impl UnsafeUnpin for ScanJsonFile
impl UnwindSafe for ScanJsonFile
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