mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-27 15:41:33 +00:00
making wasmer_byte_array
fields public
This commit is contained in:
@ -97,7 +97,6 @@ pub mod table;
|
|||||||
pub mod trampoline;
|
pub mod trampoline;
|
||||||
pub mod value;
|
pub mod value;
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub enum wasmer_result_t {
|
pub enum wasmer_result_t {
|
||||||
@ -119,6 +118,6 @@ pub struct wasmer_limit_option_t {
|
|||||||
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct wasmer_byte_array {
|
pub struct wasmer_byte_array {
|
||||||
bytes: *const u8,
|
pub bytes: *const u8,
|
||||||
bytes_len: u32,
|
pub bytes_len: u32,
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user