Re: [PATCH 2/2] rust: device: remove array copy

From: Tamir Duberstein

Date: Tue May 26 2026 - 12:56:44 EST


On Tue, May 26, 2026 at 10:39 AM Tamir Duberstein <tamird@xxxxxxxxxx> wrote:
>
> `[T; N]::map` constructs a copy of the array which is not necessary
> here, thus follow the example in the `MaybeUninit` documentation and
> transmute `[MaybeUninit<T>; N]` to `[T; N]`.
>
> Signed-off-by: Tamir Duberstein <tamird@xxxxxxxxxx>

Please disregard this patch from consideration (but please still
consider patch 1/2).