pub struct NoAliasSingleton {
}
-/// Something where `&self` implies `&NoAliasSingleton`
+/// Token-like: `&self` implies `&NoAliasSingleton`
///
/// Implemented for `NoAliasSingleton` and the ZST reference tokens,
/// and `&`-references to them.
}
}
-/// Something where `&mut self` implies `&mut NoAliasSingleton`
+/// Token-like `&mut self` implies `&mut NoAliasSingleton`
///
/// Implemented for `NoAliasSingleton` and `MutToken`,
/// and `&mut`-references to them.