MCPcopy Create free account
hub / github.com/arcjet/gravity / Parameter

Class Parameter

cmd/gravity/src/codegen/ir.rs:82–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80/// A parameter of an interface method.
81#[derive(Debug, Clone)]
82pub struct Parameter {
83 /// The Go identifier of the parameter.
84 pub name: GoIdentifier,
85 /// The Go type of the parameter.
86 pub go_type: GoType,
87 /// The WIT type of the parameter.
88 pub wit_type: Type,
89}
90
91/// The return type of an interface method.
92#[derive(Debug, Clone)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected