-
Updated
Sep 3, 2020 - Rust
rust-crate
Here are 360 public repositories matching this topic...
-
Updated
Nov 14, 2020 - Rust
-
Updated
Jun 13, 2020 - Rust
-
Updated
Nov 8, 2020 - Rust
-
Updated
Nov 12, 2020 - Rust
It might be worth considering adding simd-json to the TechEmpower benchmarks:
To make this really worthwhile #121 would be good.
suggested by @pickfire
On my system:
$ cat /sys/class/power_supply/BAT0/model_name
5�+1^^�^^�9(-:'&��
Or:
$ hexdump /sys/class/power_supply/BAT0/model_name
0000000 8035 312b 801e 801e 2839 3a2d 2627 8080
0000010 000a
0000011
This means trying to get battery info always returns an error due to https://github.com/svartalf/rust-battery/blob/master/battery/src/platform/linux/device.rs#L36
-
Updated
Nov 3, 2020 - Rust
-
Updated
Nov 13, 2020 - Rust
-
Updated
Sep 13, 2020 - Rust
-
Updated
Sep 9, 2020 - Rust
-
Updated
Sep 9, 2020 - Rust
-
Updated
Nov 11, 2020 - Rust
Hi! I am very new to Rust, so I apologize if this ends up being a naive question.
So, for my robot motion optimization application, I have created an objective function and gradient function in the required format using closures, but the closure types are FnMut’s rather than Fn’s. This leads to the compiler complaining since the OpEn library forces the objective and gradient functions to be F
-
Updated
Oct 31, 2020 - Rust
-
Updated
Nov 2, 2020 - Rust
-
Updated
Nov 13, 2020 - Rust
-
Updated
Oct 31, 2020 - Rust
-
Updated
Oct 27, 2020 - Rust
-
Updated
Jul 23, 2020 - Rust
https://github.com/dtolnay/trybuild
This would let us declare things that should fail and then check that they really do fail.
Specifically, we could make a test such as
#[derive(Zeroable, Pod)]
pub struct Bad(u16, u8);And that should fail to derive, of course.
-
Updated
Oct 12, 2020 - Rust
flatc has rich set of arguments https://google.github.io/flatbuffers/flatbuffers_guide_using_schema_compiler.html
I saw you implement the basic set that works just fine, but for example I'd love to modify the --filename-suffix, but cannot findout how?
Help would be much appreciated!
-
Updated
Nov 3, 2020 - Rust
Improve this page
Add a description, image, and links to the rust-crate topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the rust-crate topic, visit your repo's landing page and select "manage topics."


What is the feature ?
I'm trying out this library for the first time and I'm seeing several places where some shorthand functions would have been really pleasant:
Pos::top_right,Pos::bottom_right,Pos::bottom_centeretc..