Anthony Deschamps
Anthony Deschamps
This is a bit speculative. I was recently part of a discussion about the various data structures available in third party Elm packages and the situations where one would want...
I'd like to add support for a few more APIs (in particular, Get/Set Blob Metadata). It looks to me like the request builder `.rs` files are generated code from the...
This is based largely on the example of `BytesMut::unsplit`. If two `Bytes` are contiguous and point to the same allocation, then they are cheaply merged. Otherwise, a new `BytesMut` is...
The following fails to compile: ```rust use failure::Error; fn main() -> Result { let success: Result = Ok(()); success?; Ok(()) } ``` ``` error[E0277]: the trait bound `(): std::error::Error` is...
This (partially) addresses #87. This replaces the use of `serde::de::value::MapDeserializer` with a custom deserializer implementation. `MapDeserializer` is generic over the types of keys -- even if they're not displayable. However,...
Here are the results of a failed experiment. Currently, the `Position` type is defined as `type Position = Vec;`. Since the majority of instances of `Position` are going to be...
This makes it possible to use attributions that have links in them. I considered whether attributes should be `Html msg` instead of `String`, but it seems like tile sources are...
Would you be interested in accepting a PR that adds a drop guard API for working with ranges? This would be convenient for cases where a function could return in...
The docs/readme mention more advanced time zone handling planned for version 0.4. What will that look like. In particular, I'd like to be able to print time zone names so...
When I try to build the samples with rustc 1.18.0-nightly, aster fails to compile. I suspect this will just be a simple dependency bump once the following issue is fixed:...