pub struct CommandParserError<'l> {
pub message: String,
pub command: &'l str,
pub index: usize,
}
Fields§
§message: String
§command: &'l str
§index: usize
Trait Implementations§
Source§impl<'l> Clone for CommandParserError<'l>
impl<'l> Clone for CommandParserError<'l>
Source§fn clone(&self) -> CommandParserError<'l>
fn clone(&self) -> CommandParserError<'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 CommandParserError<'l>
impl<'l> Debug for CommandParserError<'l>
Source§impl Display for CommandParserError<'_>
impl Display for CommandParserError<'_>
Source§impl<'l> PartialEq for CommandParserError<'l>
impl<'l> PartialEq for CommandParserError<'l>
impl<'l> StructuralPartialEq for CommandParserError<'l>
Auto Trait Implementations§
impl<'l> Freeze for CommandParserError<'l>
impl<'l> RefUnwindSafe for CommandParserError<'l>
impl<'l> Send for CommandParserError<'l>
impl<'l> Sync for CommandParserError<'l>
impl<'l> Unpin for CommandParserError<'l>
impl<'l> UnwindSafe for CommandParserError<'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