> <@grantm11235:matrix.org> I don't think you need the CommandConstruct type, you can just convert a u16 (or two u8s) directly into a Command * You're right. I did it to try this out: ``` impl TryInto for CommandConstruct { type Error = CommandErr; fn try_into(self) -> Result { self.decode() } } ``` I should actually try this out.