pub struct RuntimeIdentityQuery {
pub active_binary: Option<String>,
pub path_binaries: Vec<String>,
pub has_path_shadowing: bool,
pub has_duplicate_installs: bool,
pub stale_wrapper_scripts: Vec<String>,
pub has_mismatched_wheel_binary_versions: bool,
pub legacy_installer_conflicts: Vec<String>,
pub active_binary_missing: bool,
pub broken_symlink_active_binary: bool,
}Expand description
Structured runtime identity diagnostics queried from install services.
Fields§
§active_binary: Option<String>Active binary used for invocation.
path_binaries: Vec<String>All discovered canonical binaries in PATH order.
has_path_shadowing: boolWhether PATH shadowing is present.
has_duplicate_installs: boolWhether duplicate installs are detected across ecosystems.
stale_wrapper_scripts: Vec<String>Wrapper scripts that no longer point to a valid runtime.
has_mismatched_wheel_binary_versions: boolWhether wheel/runtime version mismatch is detected.
legacy_installer_conflicts: Vec<String>Legacy installer conflicts detected on PATH.
active_binary_missing: boolWhether configured active binary path is missing.
broken_symlink_active_binary: boolWhether configured active binary path is a broken symlink.
Implementations§
Source§impl RuntimeIdentityQuery
impl RuntimeIdentityQuery
Sourcepub fn stale_wrapper_maintenance(&self) -> Vec<String>
pub fn stale_wrapper_maintenance(&self) -> Vec<String>
Return stale-wrapper maintenance paths using neutral naming.
Trait Implementations§
Source§impl Clone for RuntimeIdentityQuery
impl Clone for RuntimeIdentityQuery
Source§fn clone(&self) -> RuntimeIdentityQuery
fn clone(&self) -> RuntimeIdentityQuery
Returns a duplicate 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 Debug for RuntimeIdentityQuery
impl Debug for RuntimeIdentityQuery
Source§impl PartialEq for RuntimeIdentityQuery
impl PartialEq for RuntimeIdentityQuery
impl Eq for RuntimeIdentityQuery
impl StructuralPartialEq for RuntimeIdentityQuery
Auto Trait Implementations§
impl Freeze for RuntimeIdentityQuery
impl RefUnwindSafe for RuntimeIdentityQuery
impl Send for RuntimeIdentityQuery
impl Sync for RuntimeIdentityQuery
impl Unpin for RuntimeIdentityQuery
impl UnsafeUnpin for RuntimeIdentityQuery
impl UnwindSafe for RuntimeIdentityQuery
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.