pub struct FileError {
pub file_path: String,
pub error_type: ErrorType,
pub message: String,
}
Expand description
Represents an error that occurred while processing a specific file
This struct contains detailed information about parsing failures, including the file path, error type, and a descriptive message.
Fields§
§file_path: String
§error_type: ErrorType
§message: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileError
impl<'de> Deserialize<'de> for FileError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FileError
impl RefUnwindSafe for FileError
impl Send for FileError
impl Sync for FileError
impl Unpin for FileError
impl UnwindSafe for FileError
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