Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/ProcessManagement/NodeResolver/
ResolvedNode.rs

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