#[repr(C)]pub struct ParseFloatErrorWithInput {
pub error: ParseFloatError,
pub input: AzString,
}Expand description
Wrapper for a ParseFloatError paired with the input string that failed. Used by multiple Owned error enums that need to store both the error and input.
Fields§
§error: ParseFloatError§input: AzStringTrait Implementations§
Source§impl Clone for ParseFloatErrorWithInput
impl Clone for ParseFloatErrorWithInput
Source§fn clone(&self) -> ParseFloatErrorWithInput
fn clone(&self) -> ParseFloatErrorWithInput
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 ParseFloatErrorWithInput
impl Debug for ParseFloatErrorWithInput
Source§impl PartialEq for ParseFloatErrorWithInput
impl PartialEq for ParseFloatErrorWithInput
Source§fn eq(&self, other: &ParseFloatErrorWithInput) -> bool
fn eq(&self, other: &ParseFloatErrorWithInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParseFloatErrorWithInput
Auto Trait Implementations§
impl Freeze for ParseFloatErrorWithInput
impl RefUnwindSafe for ParseFloatErrorWithInput
impl Send for ParseFloatErrorWithInput
impl Sync for ParseFloatErrorWithInput
impl Unpin for ParseFloatErrorWithInput
impl UnsafeUnpin for ParseFloatErrorWithInput
impl UnwindSafe for ParseFloatErrorWithInput
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