pub struct ParseIssue {
pub path: PathBuf,
pub message: String,
}Expand description
Non-fatal parse/indexing issue associated with a source file.
Fields§
§path: PathBufFile path where the issue occurred.
message: StringHuman-readable error description.
Trait Implementations§
Source§impl Clone for ParseIssue
impl Clone for ParseIssue
Source§fn clone(&self) -> ParseIssue
fn clone(&self) -> ParseIssue
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 moreAuto Trait Implementations§
impl Freeze for ParseIssue
impl RefUnwindSafe for ParseIssue
impl Send for ParseIssue
impl Sync for ParseIssue
impl Unpin for ParseIssue
impl UnsafeUnpin for ParseIssue
impl UnwindSafe for ParseIssue
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