diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-09-05 18:58:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-05 18:58:56 +0200 |
| commit | 0db3932433e0c2ebafe24ebbbb840b928d39f719 (patch) | |
| tree | 7cbfaf804f02cc8e777d8e03a4306428fa696584 /compiler/rustc_codegen_llvm/src/llvm | |
| parent | 9be97ae8e29b99a030a327cdb50e1997a4ff3470 (diff) | |
| parent | e45b53efc0ef0f86df82918720cfae78e295e3ac (diff) | |
| download | rust-0db3932433e0c2ebafe24ebbbb840b928d39f719.tar.gz rust-0db3932433e0c2ebafe24ebbbb840b928d39f719.zip | |
Rollup merge of #129938 - chancancode:patch-1, r=thomcc
Elaborate on deriving vs implementing `Copy` I was reading this documentation and this wasn't immediately clear to me. In my mind, it seemed obvious that a type can only claim to be `Copy` if the bits it is storing can be `Copy`, and in the case of a generic struct that can only be the case if `T: Copy`. So the bound added by the derive seemed necessary at all times, and I thought what the documentation was trying to say is that the custom implementation allows you to add _additional bounds_. Of course what it was actually trying to point out is that just because you have a generic parameter `T`, it doesn't necessarily mean you are storing the bits of `T`. And if you aren't, it may be the case that your own bits can be copied regardless of whether the bits of `T` can be safely copied. Thought it may be worth elaborating to make that a bit more clear. Haven't tested/didn't try to figure out how to render this locally. Mainly not sure if the `PhantomData` back link is going to just work or need some extra stuff, but I figured someone else probably could just tell.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm')
0 files changed, 0 insertions, 0 deletions
