Waelwindows

Results 15 issues of Waelwindows

In the binary formats i'm parsing, there are `Vec`s that don't have an explicit length stored in the file with them. One common method of storing such `Vec`s is by...

I have scoured through the documentation and there doesn't seem to be a way to handle offsets relative to the start of a struct. Looking at the implementation in `file_ptr.rs`...

This should remove the restriction on `beef::lean::Cow` being only available on targets with a pointer width of 64

Inspired by #23, we should disable subscripts within `siunitx` macros such as `\qty`, `\num`, and so on. It's currently painful to write exponents for numbers in these macros as they...

```csharp public class TestClass : IBinarySerializable { public enum EMode { A = 2, B = 4, C = 6 } [FieldOrder(0)] public EMode Mode = EMode.A; [FieldOrder(1)] public ChildClass...

bug

I've been trying to circumvent this a lot recently, but the current API I'm working with requires the use of absolute offsets. for example, a class may be created as...

Currently I'm working with a file format that's quite complicated and necessitates the I defer serialization of the fields after a stream (because the field data is encrypted within that...

I have a current use case of an archive type that uses offsets, I'd like to calculate said offsets right before i serialize the instance. currently i would have to...

I'm trying to make a (de)serializer for a particular texture format, Every structure in the format starts with a magic of 4 bytes size, however for some odd reason. When...