RustDDS
RustDDS copied to clipboard
Find panic!() calls and eliminate them
The panic!()
macro should be replaced by something catchable, such as returning a Result, or documenting in comments why the panic is unreachable (and replacing by unreachable!() macro).