-
```rust
enum A {}
impl A {
fn foo() {
use Self::*; // error: unresolved import `Self`
}
}
```
It's counterintuitive that this fails. At the very least (if it's not possible t…
-
I must be misunderstanding how to carry out operations on quantities with units. For example, let's consider this very simple example:
```rust
use uom::si::f32::*;
use uom::si::length::meter;
fn…
-
Hi,
Looking over:
http://hackage.haskell.org/package/postgresql-simple-0.4.10.0/docs/Database-PostgreSQL-Simple-FromField.html
It seems we are missing support for geometric datatypes, in particular,…
-
# Proposal
1. Use an updated Record interface that supports:
a. `Merge(rec1, rec2)` so that we can support record types that are mergeable (e.g. provider records) and not just sortable (e.g.…
-
## Summary
Shared UX is moving to a package-first architecture, where code is decoupled from plugin dependencies and placed in stateless packages. The biggest reason for this is to avoid circular …
-
I cloned your Repository and tried to compile the example but i got this:
[jan@helium example]$ cargo build
Updating registry `https://github.com/rust-lang/crates.io-index`
Com…
-
[Given](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=e0681b02b38787670516669847a026f8):
```rust
#![feature(generic_associated_types)]
// The cyclic dependency betwee…
-
Further to our discussion yesterday, I thought I'd add this to the board.
The CREMI format stores locations of point annotations for pre- and post-synaptic types; BigCAT displays these as points an…
-
Lower bounds are useful when implementing type safe methods of (classes that are covariant with some type) that take argument of some other type. For example, the method [`updated`](https://www.scala-…
-
This refers to the documentation and implementation of custom extensions, as described in the "Custom Extensions" section at https://gltf-transform.donmccurdy.com/extensions . This is not directly (or…