MCPcopy Create free account
hub / github.com/ExtropyIO/SolanaBootcamp / ExerciseOutput

Class ExerciseOutput

homeworks_rust/src/exercise.rs:93–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91// A representation of an already executed binary
92#[derive(Debug)]
93pub struct ExerciseOutput {
94 // The textual contents of the standard output of the binary
95 pub stdout: String,
96 // The textual contents of the standard error of the binary
97 pub stderr: String,
98}
99
100struct FileHandle;
101

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected