roon@lemmy.ml to Programmer Humor@programming.devEnglish · 8 months ago"I want to live forever in AI"lemmy.mlimagemessage-square166fedilinkarrow-up1698file-textcross-posted to: [email protected]
arrow-up1666image"I want to live forever in AI"lemmy.mlroon@lemmy.ml to Programmer Humor@programming.devEnglish · 8 months agomessage-square166fedilinkfile-textcross-posted to: [email protected]
minus-squarevoxel@sopuli.xyzlinkfedilinkarrow-up20arrow-down1·edit-28 months agowould’ve made more sense if it was rust (or is the copy intential here?)
minus-squareflying_sheep@lemmy.mllinkfedilinkarrow-up5·8 months agoIt’s pinned and !Unpin, and only has private constructors. Uploading is a matter of implementing Clone
minus-squareRustyNova@lemmy.worldlinkfedilinkarrow-up8·8 months ago#[derive(Clone, Copy)] struct Consciousness {...} fn upload_brain(brain: Consciousness) -> Result<(), Error>
minus-squaremarcos@lemmy.worldlinkfedilinkarrow-up3·8 months agoThe semantics in Rust would be completely out of wack. What does ownership mean? I guess the point of the joke is that consciousness is a shallow value.
would’ve made more sense if it was rust
(or is the copy intential here?)
Plottwist: consciousness is : Copy
It’s pinned and
!Unpin
, and only has private constructors.Uploading is a matter of implementing
Clone
#[derive(Clone, Copy)] struct Consciousness {...} fn upload_brain(brain: Consciousness) -> Result<(), Error>
The semantics in Rust would be completely out of wack. What does ownership mean?
I guess the point of the joke is that consciousness is a shallow value.