-
Notifications
You must be signed in to change notification settings - Fork 385
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
New partial updates logging APIs: Rust #8581
Labels
Comments
This was referenced Jan 10, 2025
teh-cmc
added a commit
that referenced
this issue
Jan 13, 2025
…8643) Generate methods for all archetypes that allow retrieving the fully-qualified descriptor for any of the archetype's field. E.g. this method returns the descriptor for the `radii` field of `Points3D`: ```rust impl Points3D { /// Returns the [`ComponentDescriptor`] for [`Self::radii`]. #[inline] pub fn descriptor_radii() -> ComponentDescriptor { ComponentDescriptor { archetype_name: Some("rerun.archetypes.Points3D".into()), component_name: "rerun.components.Radius".into(), archetype_field_name: Some("radii".into()), } } } ``` This becomes a must as we start require tags in more and more places (e.g. partial updates APIs). * DNM: requires #8642 * Part of #8581
teh-cmc
added a commit
that referenced
this issue
Jan 13, 2025
teh-cmc
added a commit
that referenced
this issue
Jan 13, 2025
…8649) This adds a partial update example for `Points3D`, in all languages, using both the legacy and new APIs (if they already exist). This acts as a before/after comparison, a piece of documentation and a way to make sure that the legacy and new APIs behave similarly. * DNM: requires #8648 * Part of #8583 * Part of #8581 * Part of #8582
teh-cmc
added a commit
that referenced
this issue
Jan 13, 2025
All done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TODO
The text was updated successfully, but these errors were encountered: