The Wayback Machine - https://web.archive.org/web/20200823222727/https://github.com/topics/rust
Skip to content
#

Rust

rust logo

Rust is a systems programming language created by Mozilla. It is similar to C++, but is designed for improved memory safety without sacrificing performance.

Here are 17,661 public repositories matching this topic...

sharkdp
sharkdp commented May 25, 2020

I see a lot of fd users that seem to think that they need to add "{}" to all commands. Some users also seem to think that the closing semicolon (which needs to be escaped) \; is required:

fd … -x command "{}" \;

In reality, 90% of the --exec use cases can be written without the "{}" part (which fd adds, if it is ommitted) because the file entry often comes last. The semic

yew
jonathandturner
jonathandturner commented Aug 15, 2020

Describe the bug
From discord just now:

open Data.ods | get Sheet1.Column3 | sort-by
thread 'main' panicked at 'Unimplemented BUG: What about primitives that don't have an order defined?: ("decimal", "string")', [my_truncated_path]/nu-cli-0.18.1/src/commands/sort_by.rs:145:21

sort-by should not crash Nu if mismatched types are used

To Reproduce
Steps to reproduce th

devjgm
devjgm commented Jan 20, 2020

Is your feature request related to a problem? Please describe.
No.

Describe the solution you'd like
I'd like the source code to be automatically clang-formatted according to my settings anytime the code is compiled. That is, don't require me to use the contextual menu or keyboard shortcut to format the code. Just auto-format it; just like the code is auto-compiled too.

Well, ther

MeiliSearch
unknownhasher
unknownhasher commented Jun 9, 2020

Is your feature request related to a problem? Please describe.
I want to show the number of total results (for pagination and for feedback to my users). The result field nbHits is updated by the search string but is not updated by the filters that are given. Because of that it is impossible to give a total count to the users and make a good pagination.

Describe the solution you'd like

bennetthardwick
bennetthardwick commented Aug 4, 2020

A small change that would make implementing styles for elements with background colours a bit easier. It would match the From<T> for Option<T> impl that you can already use for fields that are Option<Color> (like text_color).

Before:

Style {
    background_color: Some(Color::BLACK.into()),
    text_color: Color::WHITE.into(),
    ..Default::default()
}

After:

Created by Graydon Hoare

Released 2010

Organization
rust-lang
Website
www.rust-lang.org
Wikipedia
Wikipedia

Related Topics

c-plus-plus language
You can’t perform that action at this time.