Niklas Saari

Results 27 issues of Niklas Saari

When explicit tags are used for optional fields, wrong decoding (maybe encoding too) functions are derived. Or maybe option type disappears somehow, as the code does not hit the `decode_optional_*`...

kind/bug
help wanted
good first issue
area/codec
area/types

If the current working directory includes spaces (even if it should not...), the self-signed cert generation script will fail. Added quotes for the variable use and also `set -e` to...

Enum approach seemed to go more complex than it should with the `IntegerType` trait so I just tried wrapping struct with generic as ```rust /// `Integer`` type is newtype wrapper...

This assumes that #323 is merged first. Field count of Sequence/Set is possible to know in compile-time and this will make such a change. Because of that, it possible to...

Small performance improvement again. Seems like the compiler does not currently evaluate constant constraints in compile-time. It helps if we move the constraint construction to separate expression like follows ```rust...

For debugging purposes, it would be exceptionally useful if we add, for example [tracing](https://docs.rs/tracing/latest/tracing/) support as an optional compile-time feature. It will come with performance cost but reduces the need...

kind/enhancement
help wanted
good first issue
area/codec

Sometimes when decoding constrained integer types, it is acceptable for the codec that there are many leading zeros or ones which do not actually affect for the integer value. When...

kind/enhancement
help wanted
area/codec
area/types