pub struct Issues {
pub errors: LinkedList<Error>,
pub warnings: LinkedList<Warning>,
}
Expand description
This object contains all the problems that occured while loading a TOML file.
Fields§
§errors: LinkedList<Error>
The list of errors that blocked the file from being loaded.
warnings: LinkedList<Warning>
The list of items that were missing from the file but that have default values.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Issues
impl !RefUnwindSafe for Issues
impl Send for Issues
impl Sync for Issues
impl Unpin for Issues
impl !UnwindSafe for Issues
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