MCPcopy Create free account
hub / github.com/LPC4/Full-Stack / BuildPlan

Class BuildPlan

src/build.rs:244–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242 source_path: Option<PathBuf>,
243 },
244 Path {
245 name: String,
246 path: PathBuf,
247 },
248}
249
250impl BuildSource {
251 pub fn inline(name: impl Into<String>, source: impl Into<String>) -> Self {
252 Self::Inline {
253 name: name.into(),
254 source: source.into(),
255 source_path: None,
256 }
257 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected