I wanted to see if you had any thoughts on possible lower-level abstractions for writing? In Wild, I was recently abstracting over 64/32 bit. The reading code from object has traits that we can use to aid this abstraction, but for writing, I ended up defining our own. Do you think there would be a place in the object crate for low-level write traits similar in nature to the existing read traits? i.e. just for setting fields on various ELF structs, but generic over ELF class, rather than writing the whole file.
I wanted to see if you had any thoughts on possible lower-level abstractions for writing? In Wild, I was recently abstracting over 64/32 bit. The reading code from
objecthas traits that we can use to aid this abstraction, but for writing, I ended up defining our own. Do you think there would be a place in the object crate for low-level write traits similar in nature to the existing read traits? i.e. just for setting fields on various ELF structs, but generic over ELF class, rather than writing the whole file.