pub enum Display3DError {
TriangulationError(TriangulationError),
IntegrationError(IntegError),
}Variants§
TriangulationError(TriangulationError)
IntegrationError(IntegError)
Trait Implementations§
Source§impl Debug for Display3DError
impl Debug for Display3DError
Source§impl Display for Display3DError
impl Display for Display3DError
Source§impl Error for Display3DError
impl Error for Display3DError
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()
Source§impl From<Display3DError> for PyProxyError
impl From<Display3DError> for PyProxyError
Source§fn from(e: Display3DError) -> Self
fn from(e: Display3DError) -> Self
Converts to this type from the input type.
Source§impl From<IntegError> for Display3DError
impl From<IntegError> for Display3DError
Source§fn from(ie: IntegError) -> Self
fn from(ie: IntegError) -> Self
Converts to this type from the input type.
Source§impl From<TriangulationError> for Display3DError
impl From<TriangulationError> for Display3DError
Source§fn from(err: TriangulationError) -> Self
fn from(err: TriangulationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Display3DError
impl RefUnwindSafe for Display3DError
impl Send for Display3DError
impl Sync for Display3DError
impl Unpin for Display3DError
impl UnwindSafe for Display3DError
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