We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The header file 'operator_typers.h' does not provide the specific definitions for the 'Input' and 'Output' structures.
/** */ typedef struct Input Input_t;
/** */ typedef struct Output Output_t;
The text was updated successfully, but these errors were encountered:
I think it should be this:
/** */ typedef struct Input{ Vec_uint8_t id; Vec_uint8_t data; } Input_t;
/** */ typedef struct Output{ Vec_uint8_t id; Vec_uint8_t data; } Output_t;
Sorry, something went wrong.
Input and Output are defined as opaque type in C++. You can find there definition in: input
input
dora/apis/rust/operator/types/src/lib.rs
Lines 77 to 86 in 06a7d0b
output
Lines 103 to 112 in 06a7d0b
This is this way as some of the types are Rust types
@ShoreFlower To access the id and data of inputs, you can use the dora_read_input_id and dora_read_data functions.
id
data
dora_read_input_id
dora_read_data
No branches or pull requests
The header file 'operator_typers.h' does not provide the specific definitions for the 'Input' and 'Output' structures.
/** */
typedef struct Input Input_t;
/** */
typedef struct Output Output_t;
The text was updated successfully, but these errors were encountered: