Enum guppy::platform::PlatformStatus
source · pub enum PlatformStatus<'g> {
Never,
Always,
PlatformDependent {
eval: PlatformEval<'g>,
},
}
Expand description
The status of a dependency or feature, which is possibly platform-dependent.
This is a sub-status of EnabledStatus
.
Variants§
Never
This dependency or feature is never enabled on any platforms.
Always
This dependency or feature is always enabled on all platforms.
PlatformDependent
The status is platform-dependent.
Fields
§
eval: PlatformEval<'g>
An evaluator to run queries against.
Implementations§
source§impl<'g> PlatformStatus<'g>
impl<'g> PlatformStatus<'g>
sourcepub fn is_always(&self) -> bool
pub fn is_always(&self) -> bool
Returns true if this dependency is always enabled on all platforms.
sourcepub fn is_never(&self) -> bool
pub fn is_never(&self) -> bool
Returns true if this dependency is never enabled on any platform.
sourcepub fn is_present(&self) -> bool
pub fn is_present(&self) -> bool
Returns true if this dependency is possibly enabled on any platform.
sourcepub fn enabled_on(&self, platform_spec: &PlatformSpec) -> EnabledTernary
pub fn enabled_on(&self, platform_spec: &PlatformSpec) -> EnabledTernary
Evaluates whether this dependency is enabled on the given platform spec.
Returns Unknown
if the result was unknown, which may happen if evaluating against an
individual platform and its target features are unknown.
Trait Implementations§
source§impl<'g> Clone for PlatformStatus<'g>
impl<'g> Clone for PlatformStatus<'g>
source§fn clone(&self) -> PlatformStatus<'g>
fn clone(&self) -> PlatformStatus<'g>
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§impl<'g> Debug for PlatformStatus<'g>
impl<'g> Debug for PlatformStatus<'g>
impl<'g> Copy for PlatformStatus<'g>
Auto Trait Implementations§
impl<'g> Freeze for PlatformStatus<'g>
impl<'g> RefUnwindSafe for PlatformStatus<'g>
impl<'g> Send for PlatformStatus<'g>
impl<'g> Sync for PlatformStatus<'g>
impl<'g> Unpin for PlatformStatus<'g>
impl<'g> UnwindSafe for PlatformStatus<'g>
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)