#[non_exhaustive]pub enum TessError {
CannotCreate(String),
AttributelessError(String),
LengthIncoherency(usize),
ForbiddenPrimitiveMode(Mode),
NoData,
}Expand description
Possible errors that might occur when dealing with Tess.
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.
CannotCreate(String)
Cannot create a tessellation.
AttributelessError(String)
Error related to attributeless tessellation and/or render.
LengthIncoherency(usize)
Length incoherency in vertex, index or instance buffers.
ForbiddenPrimitiveMode(Mode)
Forbidden primitive mode by hardware.
NoData
No data provided and empty tessellation.
Implementations§
Source§impl TessError
impl TessError
Sourcepub fn cannot_create(e: impl Into<String>) -> TessError
pub fn cannot_create(e: impl Into<String>) -> TessError
Cannot create a tessellation.
Sourcepub fn attributeless_error(e: impl Into<String>) -> TessError
pub fn attributeless_error(e: impl Into<String>) -> TessError
Error related to attributeless tessellation and/or render.
Sourcepub fn length_incoherency(len: usize) -> TessError
pub fn length_incoherency(len: usize) -> TessError
Length incoherency in vertex, index or instance buffers.
Sourcepub fn forbidden_primitive_mode(mode: Mode) -> TessError
pub fn forbidden_primitive_mode(mode: Mode) -> TessError
Forbidden primitive mode by hardware.
Trait Implementations§
Source§impl Error for TessError
impl Error for TessError
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()
impl Eq for TessError
impl StructuralPartialEq for TessError
Auto Trait Implementations§
impl Freeze for TessError
impl RefUnwindSafe for TessError
impl Send for TessError
impl Sync for TessError
impl Unpin for TessError
impl UnwindSafe for TessError
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