-
Updated
Sep 3, 2020 - Rust
rust-crate
Here are 357 public repositories matching this topic...
-
Updated
Oct 18, 2020 - Rust
-
Updated
Jun 13, 2020 - Rust
-
Updated
Oct 11, 2020 - Rust
-
Updated
Oct 1, 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
Oct 14, 2020 - Rust
-
Updated
Oct 16, 2020 - Rust
-
Updated
Sep 13, 2020 - Rust
-
Updated
Sep 9, 2020 - Rust
-
Updated
Sep 9, 2020 - Rust
-
Updated
Aug 28, 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 4, 2020 - Rust
-
Updated
Oct 17, 2020 - Rust
Reader functions can take in a Read + Seek trait impl, write can write to a Write
Feature gated under "std" feature as these are std traits.
For nostd, maybe need to wait for: rust-lang/rust#48331
References:
https://doc.rust-lang.org/std/io/trait.Read.html
https://doc.rust-lang.org/std/io/trait.Write.ht
-
Updated
Jul 23, 2020 - Rust
-
Updated
Aug 26, 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
Jun 10, 2020 - Rust
More system metrics.
Expand the available list of system metrics. Around 10-15 new metrics (the most useful we can think of) is a good start.
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..