pub struct StreamingConfig {
pub security: SecurityConfig,
pub buffer_size: usize,
pub max_memory: usize,
pub chunk_size: usize,
pub enable_progress: bool,
pub progress_interval: u64,
}
Expand description
Configuration for streaming parser
Fields§
§security: SecurityConfig
Security configuration
buffer_size: usize
Buffer size for XML reading
max_memory: usize
Maximum memory usage before yielding elements
chunk_size: usize
Chunk size for processing
enable_progress: bool
Enable progress callbacks
progress_interval: u64
Progress callback interval (bytes)
Trait Implementations§
Source§impl Clone for StreamingConfig
impl Clone for StreamingConfig
Source§fn clone(&self) -> StreamingConfig
fn clone(&self) -> StreamingConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StreamingConfig
impl Debug for StreamingConfig
Auto Trait Implementations§
impl Freeze for StreamingConfig
impl RefUnwindSafe for StreamingConfig
impl Send for StreamingConfig
impl Sync for StreamingConfig
impl Unpin for StreamingConfig
impl UnwindSafe for StreamingConfig
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