Open
Description
let right_size = context.wires[self.right]
.typ
.try_fully_substitute(&context.type_substitutor)
.unwrap()
.unwrap_named()
.template_args[UUID::from_hidden_value(0)]
.unwrap_value()
.unwrap_integer()
.clone();
This arguably looks odd and should probably be formatted as
let right_size = context.wires[self.right]
.typ
.try_fully_substitute(&context.type_substitutor)
.unwrap()
.unwrap_named()
.template_args[UUID::from_hidden_value(0)]
.unwrap_value()
.unwrap_integer()
.clone();
rustfmt --version
rustfmt 1.8.0-stable (90b35a6239 2024-11-26)
Activity