pub struct BinWriter { /* private fields */ }Expand description
Cursor-style binary writer used by chip snapshot encoders.
Little-endian for all multi-byte integers; bools are 1 byte (0 / 1);
optional values are tagged with a presence byte.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BinWriter
impl RefUnwindSafe for BinWriter
impl Send for BinWriter
impl Sync for BinWriter
impl Unpin for BinWriter
impl UnsafeUnpin for BinWriter
impl UnwindSafe for BinWriter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more