pub struct Limits {
pub max_sheets: Option<u32>,
pub max_cells_read: Option<u64>,
pub max_cells_compared: Option<u64>,
pub max_diffs_returned: Option<u64>,
}Expand description
Resource bounds that protect against pathological workbooks.
None means no limit on that dimension.
Fields§
§max_sheets: Option<u32>§max_cells_read: Option<u64>§max_cells_compared: Option<u64>§max_diffs_returned: Option<u64>Trait Implementations§
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