pub struct AmiitoolError {
pub why: String,
}Expand description
AmiitoolError. Can be converted to std::io::Error with std::convert::Into.
Fields§
§why: StringTrait Implementations§
Source§impl Clone for AmiitoolError
impl Clone for AmiitoolError
Source§fn clone(&self) -> AmiitoolError
fn clone(&self) -> AmiitoolError
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 AmiitoolError
impl Debug for AmiitoolError
Source§impl Display for AmiitoolError
impl Display for AmiitoolError
Source§impl From<AmiitoolError> for Error
impl From<AmiitoolError> for Error
Source§fn from(err: AmiitoolError) -> Self
fn from(err: AmiitoolError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AmiitoolError
impl RefUnwindSafe for AmiitoolError
impl Send for AmiitoolError
impl Sync for AmiitoolError
impl Unpin for AmiitoolError
impl UnwindSafe for AmiitoolError
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