pub struct ExplainReport {
pub query: String,
pub target: TargetSelection,
pub package: Option<ResolvedPackage>,
pub current_status: Option<CompatibilityStatus>,
pub current_reason: Option<String>,
pub current_paths: Vec<DependencyPath>,
pub current_rust_version: Option<String>,
pub candidate_version: Option<String>,
pub candidate_status: Option<CompatibilityStatus>,
pub blocker: Option<BlockerKind>,
pub notes: Vec<String>,
pub workspace_root: PathBuf,
}Fields§
§query: String§target: TargetSelection§package: Option<ResolvedPackage>§current_status: Option<CompatibilityStatus>§current_reason: Option<String>§current_paths: Vec<DependencyPath>§current_rust_version: Option<String>§candidate_version: Option<String>§candidate_status: Option<CompatibilityStatus>§blocker: Option<BlockerKind>§notes: Vec<String>§workspace_root: PathBufTrait Implementations§
Source§impl Clone for ExplainReport
impl Clone for ExplainReport
Source§fn clone(&self) -> ExplainReport
fn clone(&self) -> ExplainReport
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 ExplainReport
impl Debug for ExplainReport
Auto Trait Implementations§
impl Freeze for ExplainReport
impl RefUnwindSafe for ExplainReport
impl Send for ExplainReport
impl Sync for ExplainReport
impl Unpin for ExplainReport
impl UnsafeUnpin for ExplainReport
impl UnwindSafe for ExplainReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more