api_on_crates_io/
api.rs

1/// Represents an exported function signature.
2#[derive(PartialEq, Eq, Debug, Default, Clone, Hash)]
3pub struct Export<'input> {
4    /// The export name.
5    pub name: &'input str,
6
7    /// The WIT function type being exported.
8    pub function_type: u32,
9}