Roland Fredenhagen
Roland Fredenhagen
**Is your feature request related to a problem? Please describe.** When downloading multiple videos from a single page, I always have to open the files afterward to check which is...
### Description Allow constraining show rules with the functions listed in https://typst.app/docs/reference/types/selector/#methods. E.g. using `.after()` on a selector. ### Use Case I want to add extra spacing between italic and...
Not sure if this is necessary, but I wasn't 100% sure that crlf line endings would be supported (though in hindsight would be strange if they weren't)
Currently `toLocal*Case` is not in dart ([dartlan/intl#157](https://github.com/dart-lang/i18n/issues/229)). If this is implemented `toLocalLowerCase` & `toLocalUpperCase` should be used instead of `toLowerCase` & `toUpperCase`. This has only an effect on few locals,...
## Feature Request ### Crates `tracing` ### Motivation When you have all the functions that make sense to instrument inside an `impl` block, it would be nice to have a...
There are functions for all the other variants on `Value` but not for `Tagged`.
Fixes the issue I commented here: https://github.com/GREsau/schemars/issues/115#issuecomment-1385347735
### Usage ```rs #[derive(Any, Clone, Display, Debug)] #[rune(item = ::std::env, protocols(STRING_DISPLAY, STRING_DEBUG, TRY=Self::branch))] #[display("{}", value.as_deref().unwrap_or_default())] #[debug("{name}={:?}", value.as_deref().unwrap_or_default())] struct Var { name: String, value: Option, } impl Var { fn branch(self)...
What I want is some way to use e.g. derived functions or trait implementations in general with `derive(Any)`. ```rs #[derive(Any, Debug, Display)] #[display(fmt = "name = {value}")] // STRING_DISPLAY uses...