pub enum SdkReadinessState {
Ready,
Partial,
Missing,
}Expand description
Overall readiness of a local SDK path.
Variants§
Ready
Loader script present and no issues found.
Partial
Loader script present but some non-fatal issues exist.
Missing
Loader script absent — not a valid SDK root.
Trait Implementations§
Source§impl Clone for SdkReadinessState
impl Clone for SdkReadinessState
Source§fn clone(&self) -> SdkReadinessState
fn clone(&self) -> SdkReadinessState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SdkReadinessState
Source§impl Debug for SdkReadinessState
impl Debug for SdkReadinessState
impl Eq for SdkReadinessState
Source§impl PartialEq for SdkReadinessState
impl PartialEq for SdkReadinessState
Source§fn eq(&self, other: &SdkReadinessState) -> bool
fn eq(&self, other: &SdkReadinessState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SdkReadinessState
impl Serialize for SdkReadinessState
impl StructuralPartialEq for SdkReadinessState
Auto Trait Implementations§
impl Freeze for SdkReadinessState
impl RefUnwindSafe for SdkReadinessState
impl Send for SdkReadinessState
impl Sync for SdkReadinessState
impl Unpin for SdkReadinessState
impl UnsafeUnpin for SdkReadinessState
impl UnwindSafe for SdkReadinessState
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.