pub struct BudgetExceeded {
pub kind: ResourceKind,
pub limit: u64,
pub needed: u64,
}Expand description
Terminal, typed budget failure. Distinct from malformed input or I/O.
Fields§
§kind: ResourceKind§limit: u64§needed: u64Trait Implementations§
Source§impl Clone for BudgetExceeded
impl Clone for BudgetExceeded
Source§fn clone(&self) -> BudgetExceeded
fn clone(&self) -> BudgetExceeded
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BudgetExceeded
Source§impl Debug for BudgetExceeded
impl Debug for BudgetExceeded
Source§impl Display for BudgetExceeded
impl Display for BudgetExceeded
impl Eq for BudgetExceeded
Source§impl Error for BudgetExceeded
impl Error for BudgetExceeded
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()
Source§impl From<BudgetExceeded> for BlameSliceError
impl From<BudgetExceeded> for BlameSliceError
Source§fn from(source: BudgetExceeded) -> Self
fn from(source: BudgetExceeded) -> Self
Converts to this type from the input type.
Source§impl<E> From<BudgetExceeded> for LineDiffError<E>
impl<E> From<BudgetExceeded> for LineDiffError<E>
Source§fn from(error: BudgetExceeded) -> Self
fn from(error: BudgetExceeded) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BudgetExceeded
impl PartialEq for BudgetExceeded
impl StructuralPartialEq for BudgetExceeded
Auto Trait Implementations§
impl Freeze for BudgetExceeded
impl RefUnwindSafe for BudgetExceeded
impl Send for BudgetExceeded
impl Sync for BudgetExceeded
impl Unpin for BudgetExceeded
impl UnsafeUnpin for BudgetExceeded
impl UnwindSafe for BudgetExceeded
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