mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-04 23:30:18 +00:00
initial
This commit is contained in:
parent
8d427c0e72
commit
5e3c881250
@ -53,6 +53,18 @@ pub enum ParsedType {
|
||||
Utf8String,
|
||||
Vector(Box<ParsedType>),
|
||||
Record(String), // short type name
|
||||
Option(String),
|
||||
Result(String),
|
||||
}
|
||||
|
||||
enum ArgPassingStyle {
|
||||
ByValue,
|
||||
ByRef
|
||||
}
|
||||
|
||||
struct Arg {
|
||||
passing_style: ArgPassingStyle,
|
||||
parsed_type: ParsedType,
|
||||
}
|
||||
|
||||
impl ParsedType {
|
||||
|
Loading…
Reference in New Issue
Block a user