Dmitrii - Demenev
Dmitrii - Demenev
Hello, I would like to have two rendering stages of templates. One occurring at compile time (with a custom syntax) and the second occurring at run time (with default syntax)....
Currently, the lower bound for [criterion::Criterion::sample_size()](https://docs.rs/criterion/0.3.5/criterion/struct.Criterion.html#method.sample_size) is [hard-coded](https://docs.rs/criterion/0.3.5/src/criterion/lib.rs.html#512-517) as 10. I would like to run some macro-benchmarks as few times as possible, i.e. precisely 10 times. I suspect there are...
The most of Discord bots are expected to provide "mute" and "ban" commands. Their implementation involves juggling with parsing strings just to get so-much-desired duration. Formats: > "3w 1d 11...
Hi, I find it weird that [`nalgebra::base::Matrix::swap_rows`](https://docs.rs/nalgebra/latest/nalgebra/base/struct.Matrix.html#method.swap_rows) and similar methods require the type `T` of their entries to be a [`Scalar`]. Assume that in a downstream crate there's a [`Matrix`]...
The links to the reference do not fully compensate for the lack of examples yet they allow even less experienced rust developers understand which items are represented by [Generics](https://docs.rs/syn/latest/syn/struct.Generics.html) struct.
Should `~const` be a variant of `syn::TraitBoundModifier` among with `None` and `Maybe(Token![?])`?
In combination, ```rust #![feature(const_trait_impl)] #![feature(const_fn_trait_bound)] ``` Nightly features () allow constantly implement traits. According to [clarfonthey](https://github.com/clarfonthey) > The variance is mostly in terms of what implementations of traits are okay...
A while ago there was a proposal by Jon Gjengset (`jonhoo`) to add `take_until` into Rust's standard library: https://github.com/rust-lang/rust/issues/62208 While it may be not a good fit for the standard...
I found myself writing this rather ugly function: ```rust // TODO: decompose the function and maybe share the results with the library authors #[cfg(any(test, feature = "num-bigint"))] impl super::GetLastDigitAsU8 for...
Documented crate implementing the desired traits: https://crates.io/crates/min_max_traits One alternative is to have PrimNumeric type that would offer these constants.
@mcgoo Hi, which kind of error is represented by `NotMVC` and why exactly does it exist? Was it a workaround for a bug or limitation of `vcpkg`? If so, can...