pub struct ParseResult<T> {
pub commands: Vec<Command<T>>,
pub errors: Vec<Error>,
}Expand description
The commands and errors from parsing a config file.
Fields§
§commands: Vec<Command<T>>The parsed commands.
errors: Vec<Error>The errors resulting from the parsing.
Implementations§
Source§impl<T> ParseResult<T>
impl<T> ParseResult<T>
Auto Trait Implementations§
impl<T> Freeze for ParseResult<T>
impl<T> RefUnwindSafe for ParseResult<T>where
T: RefUnwindSafe,
impl<T> Send for ParseResult<T>where
T: Send,
impl<T> Sync for ParseResult<T>where
T: Sync,
impl<T> Unpin for ParseResult<T>where
T: Unpin,
impl<T> UnwindSafe for ParseResult<T>where
T: UnwindSafe,
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