Movatterモバイル変換


[0]ホーム

URL:


IntErrorKind

std::num

EnumIntErrorKind 

1.55.0 ·Source
#[non_exhaustive]
pub enum IntErrorKind { Empty, InvalidDigit, PosOverflow, NegOverflow, Zero,}
Expand description

Enum to store the various types of errors that can cause parsing an integer to fail.

§Example

if letErr(e) = i32::from_str_radix("a12",10) {println!("Failed conversion to i32: {:?}", e.kind());}

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§1.55.0

Empty

Value being parsed is empty.

This variant will be constructed when parsing an empty string.

§1.55.0

InvalidDigit

Contains an invalid digit in its context.

Among other causes, this variant will be constructed when parsing a string thatcontains a non-ASCII char.

This variant is also constructed when a+ or- is misplaced within a stringeither on its own or in the middle of a number.

§1.55.0

PosOverflow

Integer is too large to store in target integer type.

§1.55.0

NegOverflow

Integer is too small to store in target integer type.

§1.55.0

Zero

Value was Zero

This variant will be emitted when the parsing string has a value of zero, whichwould be illegal for non-zero types.

Trait Implementations§

1.55.0 ·Source§

implClone forIntErrorKind

Source§

fnclone(&self) ->IntErrorKind

Returns a duplicate of the value.Read more
1.0.0 ·Source§

fnclone_from(&mut self, source: &Self)

Performs copy-assignment fromsource.Read more
1.55.0 ·Source§

implDebug forIntErrorKind

Source§

fnfmt(&self, f: &mutFormatter<'_>) ->Result<(),Error>

Formats the value using the given formatter.Read more
1.55.0 ·Source§

implHash forIntErrorKind

Source§

fnhash<__H>(&self, state:&mut __H)
where __H:Hasher,

Feeds this value into the givenHasher.Read more
1.3.0 ·Source§

fnhash_slice<H>(data: &[Self], state:&mut H)
where H:Hasher, Self:Sized,

Feeds a slice of this type into the givenHasher.Read more
1.55.0 ·Source§

implPartialEq forIntErrorKind

Source§

fneq(&self, other: &IntErrorKind) ->bool

Tests forself andother values to be equal, and is used by==.
1.0.0 ·Source§

fnne(&self, other:&Rhs) ->bool

Tests for!=. The default implementation is almost always sufficient,and should not be overridden without very good reason.
1.55.0 ·Source§

implCopy forIntErrorKind

1.55.0 ·Source§

implEq forIntErrorKind

1.55.0 ·Source§

implStructuralPartialEq forIntErrorKind

Auto Trait Implementations§

§

implFreeze forIntErrorKind

§

implRefUnwindSafe forIntErrorKind

§

implSend forIntErrorKind

§

implSync forIntErrorKind

§

implUnpin forIntErrorKind

§

implUnwindSafe forIntErrorKind

Blanket Implementations§

Source§

impl<T>Any for T
where T: 'static + ?Sized,

Source§

fntype_id(&self) ->TypeId

Gets theTypeId ofself.Read more
Source§

impl<T>Borrow<T> for T
where T: ?Sized,

Source§

fnborrow(&self) ->&T

Immutably borrows from an owned value.Read more
Source§

impl<T>BorrowMut<T> for T
where T: ?Sized,

Source§

fnborrow_mut(&mut self) ->&mut T

Mutably borrows from an owned value.Read more
Source§

impl<T>CloneToUninit for T
where T:Clone,

Source§

unsafe fnclone_to_uninit(&self, dest:*mutu8)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment fromself todest.Read more
Source§

impl<T>From<T> for T

Source§

fnfrom(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U>Into<U> for T
where U:From<T>,

Source§

fninto(self) -> U

CallsU::from(self).

That is, this conversion is whatever the implementation ofFrom<T> for U chooses to do.

Source§

impl<T>ToOwned for T
where T:Clone,

Source§

typeOwned = T

The resulting type after obtaining ownership.
Source§

fnto_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning.Read more
Source§

fnclone_into(&self, target:&mut T)

Uses borrowed data to replace owned data, usually by cloning.Read more
Source§

impl<T, U>TryFrom<U> for T
where U:Into<T>,

Source§

typeError =Infallible

The type returned in the event of a conversion error.
Source§

fntry_from(value: U) ->Result<T, <T asTryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U>TryInto<U> for T
where U:TryFrom<T>,

Source§

typeError = <U asTryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fntry_into(self) ->Result<U, <U asTryFrom<T>>::Error>

Performs the conversion.

[8]ページ先頭

©2009-2025 Movatter.jp