enum WriteRecord {
Bit(bool),
Unsigned {
bits: u32,
value: UnsignedValue,
},
Signed {
bits: u32,
value: SignedValue,
},
Unary0(u32),
Unary1(u32),
Bytes(Box<[u8]>),
}
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for WriteRecord
impl RefUnwindSafe for WriteRecord
impl Send for WriteRecord
impl Sync for WriteRecord
impl Unpin for WriteRecord
impl UnwindSafe for WriteRecord
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