pub struct MemoryLimitExceeded {
pub current_mb: usize,
pub limit_mb: usize,
pub is_soft_limit: bool,
pub message: String,
}Expand description
Memory limit exceeded error.
Fields§
§current_mb: usize§limit_mb: usize§is_soft_limit: bool§message: StringTrait Implementations§
Source§impl Clone for MemoryLimitExceeded
impl Clone for MemoryLimitExceeded
Source§fn clone(&self) -> MemoryLimitExceeded
fn clone(&self) -> MemoryLimitExceeded
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MemoryLimitExceeded
impl Debug for MemoryLimitExceeded
Source§impl Display for MemoryLimitExceeded
impl Display for MemoryLimitExceeded
Source§impl Error for MemoryLimitExceeded
impl Error for MemoryLimitExceeded
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for MemoryLimitExceeded
impl RefUnwindSafe for MemoryLimitExceeded
impl Send for MemoryLimitExceeded
impl Sync for MemoryLimitExceeded
impl Unpin for MemoryLimitExceeded
impl UnwindSafe for MemoryLimitExceeded
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