pub struct RunPathParseError {
pub offset: usize,
pub message: String,
}Expand description
Error produced by parse_run_path.
Fields§
§offset: usizeByte offset (of the offending segment’s start) in the input.
message: StringHuman-readable reason.
Trait Implementations§
Source§impl Clone for RunPathParseError
impl Clone for RunPathParseError
Source§fn clone(&self) -> RunPathParseError
fn clone(&self) -> RunPathParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RunPathParseError
impl Debug for RunPathParseError
Source§impl Display for RunPathParseError
impl Display for RunPathParseError
impl Eq for RunPathParseError
Source§impl Error for RunPathParseError
impl Error for RunPathParseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for RunPathParseError
impl PartialEq for RunPathParseError
impl StructuralPartialEq for RunPathParseError
Auto Trait Implementations§
impl Freeze for RunPathParseError
impl RefUnwindSafe for RunPathParseError
impl Send for RunPathParseError
impl Sync for RunPathParseError
impl Unpin for RunPathParseError
impl UnsafeUnpin for RunPathParseError
impl UnwindSafe for RunPathParseError
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