pub struct LimitExceededError {
pub limit_type: String,
pub actual: usize,
pub maximum: usize,
}Expand description
Error for analysis limit exceeded
Fields§
§limit_type: String§actual: usize§maximum: usizeTrait Implementations§
Source§impl Debug for LimitExceededError
impl Debug for LimitExceededError
Source§impl Display for LimitExceededError
impl Display for LimitExceededError
Source§impl Error for LimitExceededError
impl Error for LimitExceededError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<LimitExceededError> for AppCode
impl From<LimitExceededError> for AppCode
Source§fn from(value: LimitExceededError) -> Self
fn from(value: LimitExceededError) -> Self
Converts to this type from the input type.
Source§impl From<LimitExceededError> for AppError
impl From<LimitExceededError> for AppError
Source§fn from(value: LimitExceededError) -> Self
fn from(value: LimitExceededError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LimitExceededError
impl RefUnwindSafe for LimitExceededError
impl Send for LimitExceededError
impl Sync for LimitExceededError
impl Unpin for LimitExceededError
impl UnwindSafe for LimitExceededError
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