Skip to content
New issue

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

Support Nested messages #26

Merged
merged 4 commits into from Feb 6, 2017
Merged

Support Nested messages #26

merged 4 commits into from Feb 6, 2017

Conversation

tafia
Copy link
Owner

@tafia tafia commented Feb 6, 2017

proto

message A {
    message B {
        optional int32 b = 1;
    }
    optional A a = 1;
}

will convert into

pub struct A {
    //...
}

pub mod mod_A {

    pub struct B {
        // ...
    }

}

@tafia tafia mentioned this pull request Feb 6, 2017
17 tasks
@tafia tafia merged commit 42efddb into master Feb 6, 2017
@tafia tafia deleted the nested branch February 6, 2017 09:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant