Mountain/ProcessManagement/NodeResolver/ResolvedNode.rs
1
2//! Result of a Node binary resolution attempt. Carries both the path and the
3//! source so log lines can distinguish shipped Node from system Node.
4
5use std::path::PathBuf;
6
7use crate::ProcessManagement::NodeResolver::NodeSource;
8
9#[derive(Debug, Clone)]
10pub struct Struct {
11 pub Path:PathBuf,
12
13 pub Source:NodeSource::Enum,
14}