pub struct Limits {
pub max_path_length: usize,
pub max_package_name_length: usize,
pub max_output_size: usize,
}Expand description
Configuration limits for CUE evaluation
Fields§
§max_path_length: usizeMaximum path length in characters
max_package_name_length: usizeMaximum package name length in characters
max_output_size: usizeMaximum output size in bytes
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