#[repr(C)]pub struct PakFileError<'a> {
pub msg: &'a str,
}
Fields§
§msg: &'a str
Trait Implementations§
Source§impl<'a> Clone for PakFileError<'a>
impl<'a> Clone for PakFileError<'a>
Source§fn clone(&self) -> PakFileError<'a>
fn clone(&self) -> PakFileError<'a>
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<'a> Debug for PakFileError<'a>
impl<'a> Debug for PakFileError<'a>
Source§impl<'a> Display for PakFileError<'a>
impl<'a> Display for PakFileError<'a>
Source§impl<'a> Error for PakFileError<'a>
impl<'a> Error for PakFileError<'a>
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl<'a> Freeze for PakFileError<'a>
impl<'a> RefUnwindSafe for PakFileError<'a>
impl<'a> Send for PakFileError<'a>
impl<'a> Sync for PakFileError<'a>
impl<'a> Unpin for PakFileError<'a>
impl<'a> UnwindSafe for PakFileError<'a>
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