Skip to main content

Mountain/ProcessManagement/NodeResolver/
ResolvedNode.rs

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