pub struct UnSupportedOpException { /* private fields */ }
Expand description
§UnSupportedOperationException
- code: exception code
- msg: exception msg
- line: error line
- path: error file path
- level: exception level
- reason: reason for error
Trait Implementations§
Source§impl Clone for UnSupportedOpException
impl Clone for UnSupportedOpException
Source§fn clone(&self) -> UnSupportedOpException
fn clone(&self) -> UnSupportedOpException
Returns a duplicate 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 UnSupportedOpException
impl Debug for UnSupportedOpException
Source§impl Default for UnSupportedOpException
impl Default for UnSupportedOpException
Source§impl DerefException for UnSupportedOpException
impl DerefException for UnSupportedOpException
fn deref_mut_exception(&mut self) -> Self
Source§impl Display for UnSupportedOpException
impl Display for UnSupportedOpException
Source§impl Error for UnSupportedOpException
impl Error for UnSupportedOpException
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl Exception for UnSupportedOpException
impl Exception for UnSupportedOpException
fn code(&self) -> u32
fn msg(&self) -> &str
fn level(&self) -> ExceptionLevel
fn set_code(&mut self, code: u32)
fn set_level(&mut self, level: ExceptionLevel)
fn set_msg(&mut self, msg: &str)
fn get_type(&self) -> Exceptions
fn timestamp(&self) -> Duration
Source§impl FromBuilder for UnSupportedOpException
impl FromBuilder for UnSupportedOpException
Source§type Input = UnSupportedOpExceptionBuilder
type Input = UnSupportedOpExceptionBuilder
builder type
Source§type Output = UnSupportedOpException
type Output = UnSupportedOpException
exception type
fn from_builder(builder: &Self::Input) -> Self::Output
Source§impl NewFrom for UnSupportedOpException
impl NewFrom for UnSupportedOpException
Source§impl PartialEq for UnSupportedOpException
impl PartialEq for UnSupportedOpException
Source§impl SuperBuilderImpl<UnSupportedOpException> for UnSupportedOpExceptionBuilder
impl SuperBuilderImpl<UnSupportedOpException> for UnSupportedOpExceptionBuilder
fn new() -> Self
fn code(&self) -> u32
fn msg(&self) -> &str
fn level(&self) -> ExceptionLevel
fn set_code(&mut self, code: u32) -> &mut Self
fn set_msg(&mut self, msg: &str) -> &mut Self
fn set_level(&mut self, level: ExceptionLevel) -> &mut Self
fn exception_type(&self) -> Exceptions
fn timestamp(&self) -> Duration
fn build(&mut self) -> UnSupportedOpException
impl StructuralPartialEq for UnSupportedOpException
Auto Trait Implementations§
impl Freeze for UnSupportedOpException
impl RefUnwindSafe for UnSupportedOpException
impl Send for UnSupportedOpException
impl Sync for UnSupportedOpException
impl Unpin for UnSupportedOpException
impl UnwindSafe for UnSupportedOpException
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