pub enum TessellationError {
UnsupportedParamater,
InvalidVertex,
TooManyVertices,
Internal(InternalError),
}
Expand description
The fill tessellator’s error enumeration.
Variants§
Trait Implementations§
source§impl Clone for TessellationError
impl Clone for TessellationError
source§fn clone(&self) -> TessellationError
fn clone(&self) -> TessellationError
Returns a copy 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 TessellationError
impl Debug for TessellationError
source§impl From<GeometryBuilderError> for TessellationError
impl From<GeometryBuilderError> for TessellationError
source§fn from(e: GeometryBuilderError) -> Self
fn from(e: GeometryBuilderError) -> Self
Converts to this type from the input type.
source§impl From<InternalError> for TessellationError
impl From<InternalError> for TessellationError
source§fn from(e: InternalError) -> Self
fn from(e: InternalError) -> Self
Converts to this type from the input type.
source§impl PartialEq for TessellationError
impl PartialEq for TessellationError
source§fn eq(&self, other: &TessellationError) -> bool
fn eq(&self, other: &TessellationError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TessellationError
Auto Trait Implementations§
impl RefUnwindSafe for TessellationError
impl Send for TessellationError
impl Sync for TessellationError
impl Unpin for TessellationError
impl UnwindSafe for TessellationError
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