tune explanation of PhantomData ownership annotation
authorRalf Jung <post@ralfj.de>
Tue, 21 Jul 2015 09:38:10 +0000 (11:38 +0200)
committerRalf Jung <post@ralfj.de>
Tue, 21 Jul 2015 09:38:10 +0000 (11:38 +0200)
src/part16.rs

index 5ae6a4824971b430984305301cd9c6732a03daee..eef6f0b40d90c12a27f31a027c6498fd8da03d53 100644 (file)
@@ -43,9 +43,9 @@ type NodePtr<T> = *mut Node<T>;
 // will own data of type `T`.
 //@ The type `PhantomData<T>` does not actually store anything in memory - it has size zero. However, logically,
 //@ Rust will consider a `T` to be present. In this case, Rust knows that data of type `T` may be dropped
-//@ whenever a `LinkedList<T>` is dropped. The checks involving destructors are pretty subtle, so it's always
-//@ a good idea to provide such extra information. In safe Rust, this can all be done automatically, but here,
-//@ we just have a `*mut Node<T>`, which Rust does not consider as actually owning the data it points to.
+//@ whenever a `LinkedList<T>` is dropped. Dropping has a lot of subtle checks to it, making sure that things can't go
+//@ wrong. For this to work, Rust needs to know which types could potentially be dropped. In safe Rust, this can all be inferred
+//@ automatically, but here, we just have a `*mut Node<T>`, and we need to tell Rust that we actually own such data.
 pub struct LinkedList<T> {
     first: NodePtr<T>,
     last:  NodePtr<T>,