pub struct EasyExceptionBuilder { /* private fields */ }
Trait Implementations§
Source§impl Clone for EasyExceptionBuilder
impl Clone for EasyExceptionBuilder
Source§fn clone(&self) -> EasyExceptionBuilder
fn clone(&self) -> EasyExceptionBuilder
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 EasyExceptionBuilder
impl Debug for EasyExceptionBuilder
Source§impl Default for EasyExceptionBuilder
impl Default for EasyExceptionBuilder
Source§impl PartialEq for EasyExceptionBuilder
impl PartialEq for EasyExceptionBuilder
Source§impl SuperBuilderImpl<EasyException> for EasyExceptionBuilder
impl SuperBuilderImpl<EasyException> for EasyExceptionBuilder
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) -> EasyException
impl StructuralPartialEq for EasyExceptionBuilder
Auto Trait Implementations§
impl Freeze for EasyExceptionBuilder
impl RefUnwindSafe for EasyExceptionBuilder
impl Send for EasyExceptionBuilder
impl Sync for EasyExceptionBuilder
impl Unpin for EasyExceptionBuilder
impl UnwindSafe for EasyExceptionBuilder
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