Enum plot_interface::dependency::image::error::LimitErrorKind
[−]#[non_exhaustive]
pub enum LimitErrorKind {
DimensionError,
InsufficientMemory,
Unsupported {
limits: Limits,
supported: LimitSupport,
},
}
Expand description
Indicates the limit that prevented an operation from completing.
Note that this enumeration is not exhaustive and may in the future be extended to provide more detailed information or to incorporate other resources 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.
DimensionError
The resulting image exceed dimension limits in either direction.
InsufficientMemory
The operation would have performed an allocation larger than allowed.
Unsupported
The specified strict limits are not supported for this operation
Trait Implementations
impl Clone for LimitErrorKind
impl Clone for LimitErrorKind
fn clone(&self) -> LimitErrorKind
fn clone(&self) -> LimitErrorKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for LimitErrorKind
impl Debug for LimitErrorKind
impl Hash for LimitErrorKind
impl Hash for LimitErrorKind
impl PartialEq<LimitErrorKind> for LimitErrorKind
impl PartialEq<LimitErrorKind> for LimitErrorKind
fn eq(&self, other: &LimitErrorKind) -> bool
fn eq(&self, other: &LimitErrorKind) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &LimitErrorKind) -> bool
fn ne(&self, other: &LimitErrorKind) -> bool
This method tests for !=
.
impl Eq for LimitErrorKind
impl StructuralEq for LimitErrorKind
impl StructuralPartialEq for LimitErrorKind
Auto Trait Implementations
impl RefUnwindSafe for LimitErrorKind
impl Send for LimitErrorKind
impl Sync for LimitErrorKind
impl Unpin for LimitErrorKind
impl UnwindSafe for LimitErrorKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<Target, Original> Into2<Target> for Original where
Target: From2<Original>,
impl<Target, Original> Into2<Target> for Original where
Target: From2<Original>,
fn into2(self) -> Target
fn into2(self) -> Target
Performs the conversion.
impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<Target, Original> VectorizedInto<Target> for Original where
Target: VectorizedFrom<Original>,
impl<Target, Original> VectorizedInto<Target> for Original where
Target: VectorizedFrom<Original>,
sourcefn vectorized_into(self) -> Target
fn vectorized_into(self) -> Target
Performs the conversion.