MCPcopy Create free account
hub / github.com/AI45Lab/Code / new

Method new

core/src/verification.rs:126–138  ·  view source on GitHub ↗
(
        id: impl Into<String>,
        project_kind: impl Into<String>,
        description: impl Into<String>,
        commands: Vec<VerificationCommand>,
    )

Source from the content-addressed store, hash-verified

124
125impl VerificationPreset {
126 pub fn new(
127 id: impl Into<String>,
128 project_kind: impl Into<String>,
129 description: impl Into<String>,
130 commands: Vec<VerificationCommand>,
131 ) -> Self {
132 Self {
133 id: id.into(),
134 project_kind: project_kind.into(),
135 description: description.into(),
136 commands,
137 }
138 }
139}
140
141impl VerificationCommand {

Callers

nothing calls this directly

Calls 1

derive_statusMethod · 0.80

Tested by

no test coverage detected