pub enum RectanglePackError {
NotEnoughBinSpace,
}
Expand description
An error while attempting to pack rectangles into bins.
Variants§
NotEnoughBinSpace
The rectangles can’t be placed into the bins. More bin space needs to be provided.
Trait Implementations§
source§impl Debug for RectanglePackError
impl Debug for RectanglePackError
source§impl Display for RectanglePackError
impl Display for RectanglePackError
source§impl PartialEq for RectanglePackError
impl PartialEq for RectanglePackError
source§fn eq(&self, other: &RectanglePackError) -> bool
fn eq(&self, other: &RectanglePackError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RectanglePackError
Auto Trait Implementations§
impl RefUnwindSafe for RectanglePackError
impl Send for RectanglePackError
impl Sync for RectanglePackError
impl Unpin for RectanglePackError
impl UnwindSafe for RectanglePackError
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