Alexander Krivács Schrøder

Results 31 issues of Alexander Krivács Schrøder

Since rust-lang/rust#43466 (intra-rustdoc links) was stabilized in [Rust 1.48](https://blog.rust-lang.org/2020/11/19/Rust-1.48.html#easier-linking-in-rustdoc), the information in [C-LINK](https://rust-lang.github.io/api-guidelines/documentation.html#prose-contains-hyperlinks-to-relevant-things-c-link) feels outdated, as it still suggests linking to other items manually rather than by making use of...

Hello! 👋 I wanted to use this library, but all my async code is using Tokio as the runtime, so the fact that this library was using async-std meant that...

The `console!` macro documentation says > If you want to print things to the console in a standardized way, use [`println!`](https://doc.rust-lang.org/std/macro.println.html) instead. But when I use `println!`, I don't get...

I could be missing something, but I've got this definition: ```rust #[derive(Debug, Deserialize)] struct PropertyValue { #[serde(default = "default_property_type")] pub r#type: String, pub value: String, } fn default_property_type() -> String...

I'm deserializing an XML file into structs, and it's working beautifully, but when the XML file doesn't match the expected format, the errors only say something like "custom: 'missing field...

I have a field that is sometimes missing, and otherwise it has to be parsed to bool from either "1" or "0". This particular requirement isn't natively supported by serde,...

Shallow rendering is very useful for unit testing components in isolation. You can read [React's documentation on it](https://reactjs.org/docs/shallow-renderer.html) to get a better sense of what exactly it is, but a...

feature-request

If the call to `wasm-pack build` fails, `yarn` (which runs `webpack --mode production`) still returns an error code of `0`. I traced the problem to this bit of code: ```js...

I have a type that is roughly like this: ```rust #[derive(Clone, Debug)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub struct Foo(String, Option); ``` If I place my cursor on `Clone` or...

C-bug
A-ide

This might be a false positive (as indicated by miri in its help text), but I figured it's better to report it and have it be a false report than...

bug
help wanted