pub struct FilePathError {
pub path: String,
pub playdate: String,
}Expand description
An error performing an operation on a filesystem path.
Fields§
§path: StringThe path of the file operation.
playdate: StringThe error string reported from Playdate.
Trait Implementations§
Source§impl Debug for FilePathError
impl Debug for FilePathError
Source§impl Display for FilePathError
impl Display for FilePathError
Source§impl From<FilePathError> for Error
impl From<FilePathError> for Error
Source§fn from(e: FilePathError) -> Self
fn from(e: FilePathError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FilePathError
impl RefUnwindSafe for FilePathError
impl Send for FilePathError
impl Sync for FilePathError
impl Unpin for FilePathError
impl UnwindSafe for FilePathError
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