pub struct Limits {
pub max_records: usize,
pub max_encrypted_blob_size: usize,
pub max_metadata_string_bytes: usize,
pub max_decompressed_blob_size: usize,
}Expand description
Parser limits for AU3 record extraction.
Fields§
§max_records: usizeMaximum number of records to parse.
max_encrypted_blob_size: usizeMaximum encrypted blob size accepted for a single record.
max_metadata_string_bytes: usizeMaximum decoded metadata string length in bytes.
max_decompressed_blob_size: usizeMaximum decompressed blob size accepted for a single record.
Trait Implementations§
impl Copy for Limits
impl Eq for Limits
impl StructuralPartialEq for Limits
Auto Trait Implementations§
impl Freeze for Limits
impl RefUnwindSafe for Limits
impl Send for Limits
impl Sync for Limits
impl Unpin for Limits
impl UnsafeUnpin for Limits
impl UnwindSafe for Limits
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