Skip to content

Conversation

@joshlf
Copy link
Member

@joshlf joshlf commented Jan 2, 2026


Latest Update: v2 — Compare vs v1

📚 Full Patch History

Links show the diff between the row version and the column version.

Version v1 Base
v2 vs v1 vs Base
v1 vs Base

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @joshlf, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request introduces a new ReadOnly<T> wrapper type designed to enforce read-only access to its inner value, integrating it deeply into the existing type system for low-level memory and pointer manipulation. It also lays the groundwork for handling projections through wrapped types by defining new Wrapped and HasWrappedField traits, which are then implemented for ReadOnly<T> as well as standard library types like MaybeUninit and Wrapping. This work is currently in progress, as indicated by the [WIP] title and numerous TODO comments, signifying that further documentation and safety considerations are pending.

Highlights

  • Introduction of ReadOnly: A new #[repr(transparent)] struct ReadOnly<T> is added, intended to provide a read-only view of an underlying type T. This wrapper is designed to integrate seamlessly with the existing type system for low-level memory and pointer manipulation.
  • New Pointer Casting Traits: The src/pointer/mod.rs file introduces new unsafe traits, Wrapped and HasWrappedField, which are crucial for facilitating advanced casting and projection operations involving wrapped types. These traits define how to 'unwrap' a type and how to project fields within wrapped structures.
  • Integration with Existing Type System: ReadOnly<T> is extensively integrated with various existing traits, including KnownLayout, Unaligned, TryFromBytes, FromZeros, FromBytes, IntoBytes, Immutable, SizeEq, and TransmuteFrom. It also implements the newly introduced Wrapped and HasWrappedField traits, ensuring its compatibility and utility within the framework.
  • Standard Library Type Support: The new Wrapped and HasWrappedField traits are implemented for standard library types such as MaybeUninit<T> and Wrapping<T>, demonstrating their general applicability and laying the groundwork for consistent handling of wrapped data structures.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request introduces a new ReadOnly<T> wrapper type. While it's a work in progress, there are two critical issues with the current implementation that need to be addressed. First, ReadOnly<T> incorrectly implements DerefMut, which contradicts its purpose and allows mutation of the wrapped data. Second, it has an unsound unconditional unsafe impl of the Immutable trait, which can lead to undefined behavior by violating one of the core safety invariants of zerocopy. I've provided detailed comments and suggestions for both of these critical issues.

Comment on lines +627 to +630
// SAFETY: TODO
const _: () = unsafe {
unsafe_impl!(T: ?Sized => Immutable for ReadOnly<T>);
};
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

The unconditional unsafe impl<T: ?Sized> Immutable for ReadOnly<T> is unsound. The Immutable trait is a promise that the type has no interior mutability (i.e., no UnsafeCells). Since ReadOnly<T> is a #[repr(transparent)] wrapper, it will contain an UnsafeCell if T does. For example, if T is Cell<u8>, ReadOnly<Cell<u8>> would be marked Immutable despite containing an UnsafeCell. This violates a fundamental safety invariant of zerocopy and can lead to undefined behavior, for example when zerocopy performs unsynchronized reads on types it believes to be Immutable.

If ReadOnly<T> is intended to be Immutable, it must be bounded on T: Immutable. If it's intended to be used with types that are not Immutable, then ReadOnly<T> itself cannot be Immutable.

Suggested change
// SAFETY: TODO
const _: () = unsafe {
unsafe_impl!(T: ?Sized => Immutable for ReadOnly<T>);
};
// SAFETY: `ReadOnly<T>` is a transparent wrapper over `T`. Thus, it is
// `Immutable` if and only if `T` is.
const _: () = unsafe {
unsafe_impl!(T: ?Sized + Immutable => Immutable for ReadOnly<T>);
};

Comment on lines +694 to +699
impl<T: ?Sized + Immutable> DerefMut for ReadOnly<T> {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

The ReadOnly<T> type must not implement DerefMut. The name ReadOnly strongly implies that the wrapped data cannot be mutated, but implementing DerefMut provides a mechanism to get a mutable reference to it, which completely subverts this expectation. This is a major correctness and API design issue. It allows mutating data that is supposed to be read-only, which can lead to unsoundness and violates the principle of least astonishment.

@codecov-commenter
Copy link

codecov-commenter commented Jan 2, 2026

Codecov Report

❌ Patch coverage is 0% with 23 lines in your changes missing coverage. Please review.
✅ Project coverage is 91.52%. Comparing base (3e60851) to head (7ad85b6).

Files with missing lines Patch % Lines
src/wrappers.rs 0.00% 17 Missing ⚠️
src/pointer/mod.rs 0.00% 6 Missing ⚠️
Additional details and impacted files
@@                              Coverage Diff                              @@
##           Gbec926233303ce55c894f8ba65c939dd42690530    #2866      +/-   ##
=============================================================================
- Coverage                                      91.89%   91.52%   -0.37%     
=============================================================================
  Files                                             20       20              
  Lines                                           5773     5796      +23     
=============================================================================
  Hits                                            5305     5305              
- Misses                                           468      491      +23     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

gherrit-pr-id: Gbe8d7edd150d80731c79815685c596ed88460ae7
@joshlf joshlf force-pushed the Gbe8d7edd150d80731c79815685c596ed88460ae7 branch from ba5b262 to 7ad85b6 Compare January 2, 2026 20:36
@joshlf joshlf changed the base branch from Gdeb4f5a282b778a82175703218739a93074d0cc4 to Gbec926233303ce55c894f8ba65c939dd42690530 January 2, 2026 20:36
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.

2 participants