mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-15 09:51: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.
|
/// exposed to C.
|
||||||
pub(crate) struct NamedExports(pub Vec<NamedExport>);
|
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)]
|
#[repr(C)]
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct wasmer_exports_t;
|
pub struct wasmer_exports_t;
|
||||||
|
Reference in New Issue
Block a user