From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: rust: alloc: remove `'static` bound on `ForeignOwnable` Date: Mon, 18 May 2026 16:24:32 +1000 Message-ID: In-Reply-To: <20260517000149.3226762-2-dakr@kernel.org> References: <20260517000149.3226762-1-dakr@kernel.org> <20260517000149.3226762-2-dakr@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Adds `Default` for `Bound` marker type, needed for `#[derive(Default)]` on structs containing `PhantomData`. ```rust +impl Default for Bound { + fn default() -> Self { + Self + } +``` Straightforward. Could use `#[derive(Default)]` on `Bound` itself rather than a manual impl, but this is fine. --- Generated by Claude Code Patch Reviewer