https://doc.rust-lang.org/book/ch05-03-method-syntax.html#associated-functions [[Rust]]におけるStaticメソッドのような関数。`impl`で第1引数`self`を省略する。 ```rust impl Rectangle { fn square(size: u32) -> Rectangle { Rectangle { width: size, height: size, } } } ```