enhancementhelp wanted
倉庫指標
- 星標
- (1,080 顆星)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
I write some kind of protocol parser and I use next code to read protocol data:
reader.read_u32_into::<LittleEndian>(&mut buffer);
I would like to use the same logic for writer:
writer.write_u32_from::<LittleEndian>(&buffer);
Is that already possible? Or it needs implementation?