//! Type generation specific functionality. There is no real need for this to be directly used,
//! [`qubit_macros::handler`] should handle it all.
pubmodutil;/// Components used to construct the client type for this handler.
#[derive(Debug)]pubstructHandlerType{/// Unique name of the handler. This will automatically be namespaced as appropriate when the
/// attached router is nested.
pubname: String,
/// Signature of this handler.
pubsignature: String,
/// Kind of the handler, which will be used as the final part of the call in TypeScript.
pubkind: String,
}