pub enum SysrootStatus {
AlreadyCached,
SysrootBuilt,
}
Expand description
Whether a successful SysrootBuilder::build_from_source
call found a cached sysroot or
built a fresh one.
Variants§
AlreadyCached
The required sysroot is already cached.
SysrootBuilt
A fresh sysroot was just compiled.
Trait Implementations§
Source§impl Clone for SysrootStatus
impl Clone for SysrootStatus
Source§fn clone(&self) -> SysrootStatus
fn clone(&self) -> SysrootStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SysrootStatus
impl Debug for SysrootStatus
Source§impl Hash for SysrootStatus
impl Hash for SysrootStatus
Source§impl PartialEq for SysrootStatus
impl PartialEq for SysrootStatus
impl Copy for SysrootStatus
impl Eq for SysrootStatus
impl StructuralPartialEq for SysrootStatus
Auto Trait Implementations§
impl Freeze for SysrootStatus
impl RefUnwindSafe for SysrootStatus
impl Send for SysrootStatus
impl Sync for SysrootStatus
impl Unpin for SysrootStatus
impl UnwindSafe for SysrootStatus
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.