mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-12 16:41:21 +00:00
doc(runtime-c-api) Improve documentation of wasmer_exports_t
.
This commit is contained in:
@ -43,7 +43,11 @@ pub struct wasmer_export_func_t;
|
||||
/// exposed to C.
|
||||
pub(crate) struct NamedExports(pub Vec<NamedExport>);
|
||||
|
||||
/// Opaque pointer to `NamedExports`.
|
||||
/// Opaque pointer to the opaque structure `crate::NamedExports`,
|
||||
/// which is a wrapper around a vector of the opaque structure
|
||||
/// `crate::NamedExport`.
|
||||
///
|
||||
/// Check the `wasmer_instance_exports()` function to learn more.
|
||||
#[repr(C)]
|
||||
#[derive(Clone)]
|
||||
pub struct wasmer_exports_t;
|
||||
|
Reference in New Issue
Block a user