#[non_exhaustive]pub struct PlainStringParseError {
pub input: String,
pub char_index: usize,
pub character: char,
}
Expand description
An error that occurred while parsing a TargetSpecPlainString
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.input: String
The input we failed to parse.
char_index: usize
The character index (in bytes) at which the input failed to parse.
character: char
The character that failed to parse.
Implementations§
Trait Implementations§
source§impl Clone for PlainStringParseError
impl Clone for PlainStringParseError
source§fn clone(&self) -> PlainStringParseError
fn clone(&self) -> PlainStringParseError
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 Debug for PlainStringParseError
impl Debug for PlainStringParseError
source§impl Display for PlainStringParseError
impl Display for PlainStringParseError
source§impl Error for PlainStringParseError
impl Error for PlainStringParseError
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 PlainStringParseError
impl PartialEq for PlainStringParseError
impl Eq for PlainStringParseError
impl StructuralPartialEq for PlainStringParseError
Auto Trait Implementations§
impl Freeze for PlainStringParseError
impl RefUnwindSafe for PlainStringParseError
impl Send for PlainStringParseError
impl Sync for PlainStringParseError
impl Unpin for PlainStringParseError
impl UnwindSafe for PlainStringParseError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)