Results 4 comments of Pavel Pscheidl

> It's super ugly to do: > > ```rust > NaiveDateTime::from_timestamp( > (timestamp / 1000) as i64, > 0, > ) > ``` Doing this results in reduced precision, as...

I was trying to figure out the solution to this. For traits with generic parameters (not generic impls), creating an inventory of all implementations would be the challenge. ```rust #[typetag::serde(tag...

The point of my example wasn't object safety (can be achieved), it's the generic output of the `foo` fn, bound by the `Bar` trait. This crate currently uses [inventory](https://github.com/dtolnay/inventory) and...

Starting with Java 16, it's not possible to remove private or final modifiers via reflection. And that's exactly what mockk has to do in your case. The package must be...