#[repr(C)]pub struct ParseIntErrorWithInput {
pub error: AzString,
pub input: AzString,
}Expand description
Wrapper for ParseIntError that stores the error message and original
input as owned strings for FFI compatibility.
Fields§
§error: AzStringThe stringified parse error (e.g. “invalid digit found in string”).
input: AzStringThe original input string that failed to parse.
Trait Implementations§
Source§impl Clone for ParseIntErrorWithInput
impl Clone for ParseIntErrorWithInput
Source§fn clone(&self) -> ParseIntErrorWithInput
fn clone(&self) -> ParseIntErrorWithInput
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 ParseIntErrorWithInput
impl Debug for ParseIntErrorWithInput
Source§impl PartialEq for ParseIntErrorWithInput
impl PartialEq for ParseIntErrorWithInput
Source§fn eq(&self, other: &ParseIntErrorWithInput) -> bool
fn eq(&self, other: &ParseIntErrorWithInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParseIntErrorWithInput
Auto Trait Implementations§
impl Freeze for ParseIntErrorWithInput
impl RefUnwindSafe for ParseIntErrorWithInput
impl Send for ParseIntErrorWithInput
impl Sync for ParseIntErrorWithInput
impl Unpin for ParseIntErrorWithInput
impl UnsafeUnpin for ParseIntErrorWithInput
impl UnwindSafe for ParseIntErrorWithInput
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