pub struct SimdFormatBuffer { /* private fields */ }Expand description
SIMD-optimized string formatting buffer
Implementations§
Source§impl SimdFormatBuffer
impl SimdFormatBuffer
Sourcepub fn with_capacity(capacity: usize) -> Self
pub fn with_capacity(capacity: usize) -> Self
Creates a buffer with specified capacity aligned for SIMD operations
Sourcepub fn append_simd(&mut self, s: &str)
pub fn append_simd(&mut self, s: &str)
SIMD-accelerated string concatenation
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SimdFormatBuffer
impl RefUnwindSafe for SimdFormatBuffer
impl Send for SimdFormatBuffer
impl Sync for SimdFormatBuffer
impl Unpin for SimdFormatBuffer
impl UnwindSafe for SimdFormatBuffer
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