pub struct MException {
pub identifier: String,
pub message: String,
pub stack: Vec<String>,
}Fields§
§identifier: String§message: String§stack: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for MException
impl Clone for MException
Source§fn clone(&self) -> MException
fn clone(&self) -> MException
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 MException
impl Debug for MException
Source§impl PartialEq for MException
impl PartialEq for MException
impl StructuralPartialEq for MException
Auto Trait Implementations§
impl Freeze for MException
impl RefUnwindSafe for MException
impl Send for MException
impl Sync for MException
impl Unpin for MException
impl UnwindSafe for MException
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