pub struct PlatformLibdirUnavailable(pub Cow<'static, str>);
Expand description
The reason why a platform libdir is unavailable.
Part of PlatformLibdirSummary
.
This is an open-ended enum that may have additional deserializable variants in the future.
Tuple Fields§
§0: Cow<'static, str>
Implementations§
sourcepub const RUSTC_FAILED: Self = _
pub const RUSTC_FAILED: Self = _
The libdir is not available because the rustc invocation to obtain it failed.
sourcepub const RUSTC_OUTPUT_ERROR: Self = _
pub const RUSTC_OUTPUT_ERROR: Self = _
The libdir is not available because it was attempted to be read from rustc, but there was an issue with its output.
sourcepub const OLD_SUMMARY: Self = _
pub const OLD_SUMMARY: Self = _
The libdir is unavailable because it was deserialized from a summary serialized by an older version of nextest.
sourcepub const NOT_IN_ARCHIVE: Self = _
pub const NOT_IN_ARCHIVE: Self = _
The libdir is unavailable because a build was reused from an archive, and the libdir was not present in the archive
Trait Implementations§
source§fn clone(&self) -> PlatformLibdirUnavailable
fn clone(&self) -> PlatformLibdirUnavailable
Returns a copy 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§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)