MCPcopy Create free account
hub / github.com/Schwenger/RustTyC / ParamType

Enum ParamType

examples/parametrized_function.rs:64–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62/// Represents a type in a parametrized function; either refers to a type parameter or is an abstract type.
63#[derive(Clone, Copy, Debug)]
64enum ParamType {
65 ParamId(usize),
66 Abstract(Variant),
67}
68
69#[derive(Clone, Debug)]
70enum Expression {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected