Makes life easier. Instead of:
output_1.set_value(time.into())?;
input_1.value()?;
We can do this:
*output_1 = time.into();
*input_1;
Docs must mention that a deref can panic, and that the programmer should use .value()/.set_value() for a non-panicking impl.
Makes life easier. Instead of:
We can do this:
Docs must mention that a deref can panic, and that the programmer should use
.value()/.set_value()for a non-panicking impl.