pub struct Exception { /* private fields */ }
Expand description
! Class passed to an error.
This class encapsulates all or almost all necessary information about the error happened in the program. The exception is usually constructed and thrown implicitly via CV_Error and CV_Error_ macros.
§See also
error
Implementations§
Trait Implementations§
source§impl Boxed for Exception
impl Boxed for Exception
source§unsafe fn from_raw(ptr: <Exception as OpenCVType<'_>>::ExternReceive) -> Self
unsafe fn from_raw(ptr: <Exception as OpenCVType<'_>>::ExternReceive) -> Self
Wrap the specified raw pointer Read more
source§fn into_raw(self) -> <Exception as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw(self) -> <Exception as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
source§fn as_raw(&self) -> <Exception as OpenCVTypeExternContainer>::ExternSend
fn as_raw(&self) -> <Exception as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
source§fn as_raw_mut(
&mut self
) -> <Exception as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut( &mut self ) -> <Exception as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
source§impl ExceptionTrait for Exception
impl ExceptionTrait for Exception
source§impl ExceptionTraitConst for Exception
impl ExceptionTraitConst for Exception
fn as_raw_Exception(&self) -> *const c_void
impl Send for Exception
Auto Trait Implementations§
impl Freeze for Exception
impl RefUnwindSafe for Exception
impl !Sync for Exception
impl Unpin for Exception
impl UnwindSafe for Exception
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