pub enum ErrorHandlingMode {
Throw,
Result,
}Expand description
The mode which the error handling is done in the bindings.
Variants§
Trait Implementations§
Source§impl Clone for ErrorHandlingMode
impl Clone for ErrorHandlingMode
Source§fn clone(&self) -> ErrorHandlingMode
fn clone(&self) -> ErrorHandlingMode
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 ErrorHandlingMode
impl Debug for ErrorHandlingMode
Source§impl Default for ErrorHandlingMode
impl Default for ErrorHandlingMode
Source§fn default() -> ErrorHandlingMode
fn default() -> ErrorHandlingMode
Returns the “default value” for a type. Read more
impl Copy for ErrorHandlingMode
Auto Trait Implementations§
impl Freeze for ErrorHandlingMode
impl RefUnwindSafe for ErrorHandlingMode
impl Send for ErrorHandlingMode
impl Sync for ErrorHandlingMode
impl Unpin for ErrorHandlingMode
impl UnwindSafe for ErrorHandlingMode
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