pub struct CommandParserResult<'l> {
pub parsed_nodes: Vec<ParsedNode<'l>>,
pub error: Option<CommandParserError<'l>>,
}
Fields§
§parsed_nodes: Vec<ParsedNode<'l>>
§error: Option<CommandParserError<'l>>
Trait Implementations§
Source§impl<'l> Clone for CommandParserResult<'l>
impl<'l> Clone for CommandParserResult<'l>
Source§fn clone(&self) -> CommandParserResult<'l>
fn clone(&self) -> CommandParserResult<'l>
Returns a copy 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<'l> Debug for CommandParserResult<'l>
impl<'l> Debug for CommandParserResult<'l>
Source§impl<'l> PartialEq for CommandParserResult<'l>
impl<'l> PartialEq for CommandParserResult<'l>
impl<'l> StructuralPartialEq for CommandParserResult<'l>
Auto Trait Implementations§
impl<'l> Freeze for CommandParserResult<'l>
impl<'l> RefUnwindSafe for CommandParserResult<'l>
impl<'l> Send for CommandParserResult<'l>
impl<'l> Sync for CommandParserResult<'l>
impl<'l> Unpin for CommandParserResult<'l>
impl<'l> UnwindSafe for CommandParserResult<'l>
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