pub struct PropertiesParser { /* private fields */ }
Expand description
High-performance Java Properties format parser
Properties format specification:
- Simple key=value pairs (one per line)
- Comments start with # or !
- Supports : as separator alternative to =
- Backslash line continuation
- Unicode escapes (\uXXXX)
- Standard Java Properties format
Performance optimizations:
- String-based parsing for maximum speed
- Single pass parsing
- Minimal allocations
- Zero-copy where possible
Implementations§
Auto Trait Implementations§
impl Freeze for PropertiesParser
impl RefUnwindSafe for PropertiesParser
impl Send for PropertiesParser
impl Sync for PropertiesParser
impl Unpin for PropertiesParser
impl UnwindSafe for PropertiesParser
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