pub struct LineConfig {
pub max_line_length: usize,
}Expand description
Configuration for line parsing behavior.
Fields§
§max_line_length: usizeMaximum length of a single line in bytes. When reached, the current line will be emitted. A value of 0 means no limit (default).
Auto Trait Implementations§
impl Freeze for LineConfig
impl RefUnwindSafe for LineConfig
impl Send for LineConfig
impl Sync for LineConfig
impl Unpin for LineConfig
impl UnwindSafe for LineConfig
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