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

Class ContextLine

homeworks_rust/src/exercise.rs:69–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67// The context information of a pending exercise
68#[derive(PartialEq, Debug)]
69pub struct ContextLine {
70 // The source code that is still pending completion
71 pub line: String,
72 // The line number of the source code still pending completion
73 pub number: usize,
74 // Whether or not this is important
75 pub important: bool,
76}
77
78// The result of compiling an exercise
79pub struct CompiledExercise<'a> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected