Skip to main content

LimitExceeded

Enum LimitExceeded 

Source
#[non_exhaustive]
pub enum LimitExceeded { Width { actual: u32, max: u32, }, Height { actual: u32, max: u32, }, Pixels { actual: u64, max: u64, }, Memory { actual: u64, max: u64, }, InputSize { actual: u64, max: u64, }, OutputSize { actual: u64, max: u64, }, Frames { actual: u32, max: u32, }, Duration { actual: u64, max: u64, }, TotalPixels { actual: u64, max: u64, }, }
Expand description

A resource limit was exceeded.

Returned by ResourceLimits::check_dimensions() and related methods. Each variant carries the actual value and the limit that was exceeded, enabling useful error messages.

Implements core::error::Error so codecs can wrap it in their own error types.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Width

Image width exceeded max_width.

Fields

§actual: u32

Actual width.

§max: u32

Maximum allowed.

§

Height

Image height exceeded max_height.

Fields

§actual: u32

Actual height.

§max: u32

Maximum allowed.

§

Pixels

Pixel count exceeded max_pixels.

Fields

§actual: u64

Actual pixel count.

§max: u64

Maximum allowed.

§

Memory

Memory exceeded max_memory_bytes.

Fields

§actual: u64

Estimated memory in bytes.

§max: u64

Maximum allowed.

§

InputSize

Input data size exceeded max_input_bytes.

Fields

§actual: u64

Actual input size in bytes.

§max: u64

Maximum allowed.

§

OutputSize

Encoded output exceeded max_output_bytes.

Fields

§actual: u64

Actual or estimated output size in bytes.

§max: u64

Maximum allowed.

§

Frames

Frame count exceeded max_frames.

Fields

§actual: u32

Actual frame count.

§max: u32

Maximum allowed.

§

Duration

Animation duration exceeded max_animation_ms.

Fields

§actual: u64

Actual duration in milliseconds.

§max: u64

Maximum allowed.

§

TotalPixels

Total pixels across all frames exceeded max_total_pixels.

Fields

§actual: u64

Actual total pixel count (width × height × frames).

§max: u64

Maximum allowed.

Implementations§

Source§

impl LimitExceeded

Source

pub fn kind(&self) -> LimitKind

Which cap was exceeded, without the actual/max values — for coarse routing via ErrorCategory.

Trait Implementations§

Source§

impl CategorizedError for LimitExceeded

Source§

fn codec_name(&self) -> Option<&'static str>

The originating codec’s name (e.g. Some("zenjpeg")). A codec returns a constant here on its error type so CodecError::from_native / of can tag the envelope from the value — no separate argument. Required: there is deliberately no default, so every implementor must answer it. The zencodec cause types (LimitExceeded, UnsupportedOperation, enough::StopReason) implement it as None since they aren’t codecs. Read more
Source§

fn category(&self) -> ErrorCategory

This error’s coarse ErrorCategory.
Source§

impl Clone for LimitExceeded

Source§

fn clone(&self) -> LimitExceeded

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for LimitExceeded

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for LimitExceeded

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for LimitExceeded

Source§

impl Error for LimitExceeded

1.30.0 · Source§

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

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl PartialEq for LimitExceeded

Source§

fn eq(&self, other: &LimitExceeded) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for LimitExceeded

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<E> CodecErrorExt for E
where E: Error + 'static,

Source§

fn unsupported_operation(&self) -> Option<&UnsupportedOperation>

Find an UnsupportedOperation in this error’s cause chain.
Source§

fn limit_exceeded(&self) -> Option<&LimitExceeded>

Find a LimitExceeded in this error’s cause chain.
Source§

fn codec_error(&self) -> Option<&CodecError>

Recover the shared CodecError envelope from this error’s chain — after any erasure (Box<dyn Error>, anyhow::Error, a mapped wrapper) — by downcasting to the concrete At<CodecError> (or a bare CodecError), tolerating a single Box layer (Box<At<CodecError>> etc., so a codec may use an 8-byte boxed type Error). It gives the category and the originating codec name, so a consumer can tell codecs apart without naming any codec-specific type. Read more
Source§

fn find_cause<T>(&self) -> Option<&T>
where T: Error + 'static,

Find a cause of arbitrary type T in this error’s cause chain.
Source§

fn error_category(&self) -> Option<ErrorCategory>

Shortcut for codec_error().map(CodecError::category) — the coarse axis app/lib code routes on.
Source§

impl<E> ErrorAtExt for E
where E: Error,

Source§

fn start_at(self) -> At<E>

Wrap this value in At<E> and add the caller’s location. If allocation fails, the error is still wrapped but trace may be empty. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.