pub enum LimitsError {
ScriptTooLarge {
size: usize,
max_size: usize,
},
MaxRecursiveDepthExceeded {
depth: usize,
max_depth: u32,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LimitsError
impl RefUnwindSafe for LimitsError
impl Send for LimitsError
impl Sync for LimitsError
impl Unpin for LimitsError
impl UnwindSafe for LimitsError
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