From 82a2f4c423d29deaaeb921ab1721d0fec6ba07a4 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 27 Dec 2022 18:16:21 +0100 Subject: [PATCH] Mention that there are other receiver types --- src/methods/receiver.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/methods/receiver.md b/src/methods/receiver.md index 07693503..86d8dd9a 100644 --- a/src/methods/receiver.md +++ b/src/methods/receiver.md @@ -13,3 +13,5 @@ are other possible receivers for a method: transmitted. * No receiver: this becomes a static method on the struct. Typically used to create constructors which are called `new` by convention. + +There are even more types, e.g., `Box`.