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