pub struct WorkspaceDiagnostic {
pub path: PathBuf,
pub message: String,
}Expand description
A diagnostic about workspace configuration issues.
Fields§
§path: PathBufPath to the directory with the issue.
message: StringHuman-readable description of the issue.
Trait Implementations§
Source§impl Clone for WorkspaceDiagnostic
impl Clone for WorkspaceDiagnostic
Source§fn clone(&self) -> WorkspaceDiagnostic
fn clone(&self) -> WorkspaceDiagnostic
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 WorkspaceDiagnostic
impl RefUnwindSafe for WorkspaceDiagnostic
impl Send for WorkspaceDiagnostic
impl Sync for WorkspaceDiagnostic
impl Unpin for WorkspaceDiagnostic
impl UnsafeUnpin for WorkspaceDiagnostic
impl UnwindSafe for WorkspaceDiagnostic
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