pub struct ByteImage { /* private fields */ }Expand description
A pre-filled byte image for fast cycle-time extraction.
Built at init time by hash-filling a large buffer. At cycle time, a hash-based offset selects where to extract a variable-length slice. The extraction is just a memcpy — no per-byte computation.
Implementations§
Auto Trait Implementations§
impl Freeze for ByteImage
impl RefUnwindSafe for ByteImage
impl Send for ByteImage
impl Sync for ByteImage
impl Unpin for ByteImage
impl UnsafeUnpin for ByteImage
impl UnwindSafe for ByteImage
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