The following program tries to store a Thing
in a Holder
:
struct Holder:
var thing: Thing
fn __init__(inout self, owned thing: Thing):
self.thing = thing
pass
struct Thing:
fn __init__(inout self):
thing = Thing()
Holder(thing^)
When I run the program, I get the following error message:
error: Expression [59]:8:22: value of type 'Thing' cannot be copied into its destination
self.thing = thing
Here's why I expected this code to run without errors:
- The
^
transfers ownership, so the module scope no longer ownsthing
__init__
takesThing
asowned
I know I can make the code run by implementing a __copyinit__
but is there a way to avoid the copy?
When I translate to Rust the program compiles and runs:
struct Holder {
thing: Thing
}
struct Thing {}
fn main() {
Holder { thing: Thing {} };
}
You need to implement the
Thing.__moveinit__
function and also pass the ownership between varibales inside the__init__
function: fromthing
argument variable toself.thing
member variableIt's a bit confusing but there are 3 variables instead of 2, if you name all of them
thing
it's easy to miss it:thing
thing_arg
self.thing