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

Add SchemaType for accessing the type ID of a type defined in a schema #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ObsidianMinor
Copy link
Collaborator

This is essentially the same as capnp::HasTypeId

This is essentially the same as capnp::HasTypeId
@@ -301,6 +303,10 @@ to_tokens!(
#[derive(Clone)]
pub struct #name<T = _p::Family>(T);

impl _p::ty::SchemaType for #name {
const ID: u64 = #id;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very minor nit, but the go/cpp/and existing rust generators generate hex ids so it'd be nice to also use a hex literal just to make it easier to compare across codebases.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

@@ -702,6 +709,10 @@ to_tokens!(
#(#enumerants),*
}

impl _p::ty::SchemaType for #name {
const ID: u64 = #id;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

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.

3 participants