Tim Docker

Results 25 issues of Tim Docker

In other mustache implementations, a value of `null` triggers an inverted section. However in this one, that is not that case. This would work, I think, if the code was...

Nice library! I'm using it in a [small project](https://github.com/timbod7/secretfs). I'd like my filesystem to unmount itself under certain circumstances - any suggestions on how this can be done with the...

ADL annotations are "parsed" according to the standard ADL model, where unexpected fields are ignored. Whilst this is a reasonable approach for generalized deserialization, it can lead to errors where...

enhancement

This adl: ``` struct TabularQueryReq { PageReq page = {}; }; ``` generates: ``` #[derive(Clone,Deserialize,Eq,Hash,PartialEq,Serialize)] pub struct TabularQueryReq { #[serde(default="TabularQueryReq::::def_page")] pub page: PageReq, phantomT: PhantomData, } impl TabularQueryReq { pub...

An adl declaration called `Result` or `Option` generates invalid rust code. Possibilities to address include: * generate all rust code with #![no_implicit_prelude] * some sort of annotation that lets you...