summaryrefslogtreecommitdiff
path: root/vendor/num-conv
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/num-conv')
-rw-r--r--vendor/num-conv/.cargo-checksum.json1
-rw-r--r--vendor/num-conv/Cargo.toml55
-rw-r--r--vendor/num-conv/LICENSE-Apache202
-rw-r--r--vendor/num-conv/LICENSE-MIT19
-rw-r--r--vendor/num-conv/src/lib.rs329
5 files changed, 0 insertions, 606 deletions
diff --git a/vendor/num-conv/.cargo-checksum.json b/vendor/num-conv/.cargo-checksum.json
deleted file mode 100644
index 3886e697..00000000
--- a/vendor/num-conv/.cargo-checksum.json
+++ /dev/null
@@ -1 +0,0 @@
-{"files":{"Cargo.toml":"c1d8999190f493d43b84b07eaffd2a9144e16be197bb3ef13eb69305e2f23047","LICENSE-Apache":"c0fd5f9df8d17e13587f8fe403d2326b835e60d532817d0b42ae4aea44209251","LICENSE-MIT":"af85fff507d80e6c7ff242acfc4b0a7f5de9a72286bb3c883c782772ca4b4402","src/lib.rs":"ab6c4b28902164204179f5c31473753fbe5220a4b23082e227478e19c2aa47ca"},"package":"51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"} \ No newline at end of file
diff --git a/vendor/num-conv/Cargo.toml b/vendor/num-conv/Cargo.toml
deleted file mode 100644
index 0b8a9a6c..00000000
--- a/vendor/num-conv/Cargo.toml
+++ /dev/null
@@ -1,55 +0,0 @@
-# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
-#
-# When uploading crates to the registry Cargo will automatically
-# "normalize" Cargo.toml files for maximal compatibility
-# with all versions of Cargo and also rewrite `path` dependencies
-# to registry (e.g., crates.io) dependencies.
-#
-# If you are reading this file be aware that the original Cargo.toml
-# will likely look very different (and much more reasonable).
-# See Cargo.toml.orig for the original contents.
-
-[package]
-edition = "2021"
-rust-version = "1.57.0"
-name = "num-conv"
-version = "0.1.0"
-authors = ["Jacob Pratt <jacob@jhpratt.dev>"]
-include = [
- "src/**/*",
- "LICENSE-*",
-]
-description = """
-`num_conv` is a crate to convert between integer types without using `as` casts. This provides
-better certainty when refactoring, makes the exact behavior of code more explicit, and allows using
-turbofish syntax.
-"""
-readme = "README.md"
-keywords = [
- "cast",
- "extend",
- "truncate",
- "convert",
- "integer",
-]
-categories = [
- "no-std",
- "no-std::no-alloc",
- "rust-patterns",
-]
-license = "MIT OR Apache-2.0"
-repository = "https://github.com/jhpratt/num-conv"
-
-[package.metadata.docs.rs]
-rustdoc-args = ["--generate-link-to-definition"]
-
-[features]
-
-[lints.clippy]
-alloc-instead-of-core = "deny"
-std-instead-of-core = "deny"
-
-[lints.rust]
-missing-docs = "warn"
-unreachable-pub = "warn"
-unused = "warn"
diff --git a/vendor/num-conv/LICENSE-Apache b/vendor/num-conv/LICENSE-Apache
deleted file mode 100644
index d8bca8b9..00000000
--- a/vendor/num-conv/LICENSE-Apache
+++ /dev/null
@@ -1,202 +0,0 @@
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright 2023 Jacob Pratt
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
diff --git a/vendor/num-conv/LICENSE-MIT b/vendor/num-conv/LICENSE-MIT
deleted file mode 100644
index 7c7f78a5..00000000
--- a/vendor/num-conv/LICENSE-MIT
+++ /dev/null
@@ -1,19 +0,0 @@
-Copyright (c) 2023 Jacob Pratt
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/vendor/num-conv/src/lib.rs b/vendor/num-conv/src/lib.rs
deleted file mode 100644
index cbf3ff21..00000000
--- a/vendor/num-conv/src/lib.rs
+++ /dev/null
@@ -1,329 +0,0 @@
-//! `num_conv` is a crate to convert between integer types without using `as` casts. This provides
-//! better certainty when refactoring, makes the exact behavior of code more explicit, and allows
-//! using turbofish syntax.
-
-#![no_std]
-
-/// Anonymously import all extension traits.
-///
-/// This allows you to use the methods without worrying about polluting the namespace or importing
-/// them individually.
-///
-/// ```rust
-/// use num_conv::prelude::*;
-/// ```
-pub mod prelude {
- pub use crate::{CastSigned as _, CastUnsigned as _, Extend as _, Truncate as _};
-}
-
-mod sealed {
- pub trait Integer {}
-
- macro_rules! impl_integer {
- ($($t:ty)*) => {$(
- impl Integer for $t {}
- )*};
- }
-
- impl_integer! {
- u8 u16 u32 u64 u128 usize
- i8 i16 i32 i64 i128 isize
- }
-
- pub trait ExtendTargetSealed<T> {
- fn extend(self) -> T;
- }
-
- pub trait TruncateTargetSealed<T> {
- fn truncate(self) -> T;
- }
-}
-
-/// Cast to a signed integer of the same size.
-///
-/// This trait is implemented for all integers. Unsigned to signed casts are equivalent to
-/// `0.wrapping_add_signed(value)`, while signed to signed casts are an identity conversion.
-///
-/// ```rust
-/// # use num_conv::CastSigned;
-/// assert_eq!(u8::MAX.cast_signed(), -1_i8);
-/// assert_eq!(u16::MAX.cast_signed(), -1_i16);
-/// assert_eq!(u32::MAX.cast_signed(), -1_i32);
-/// assert_eq!(u64::MAX.cast_signed(), -1_i64);
-/// assert_eq!(u128::MAX.cast_signed(), -1_i128);
-/// assert_eq!(usize::MAX.cast_signed(), -1_isize);
-/// ```
-///
-/// ```rust
-/// # use num_conv::CastSigned;
-/// assert_eq!(0_i8.cast_signed(), 0_i8);
-/// assert_eq!(0_i16.cast_signed(), 0_i16);
-/// assert_eq!(0_i32.cast_signed(), 0_i32);
-/// assert_eq!(0_i64.cast_signed(), 0_i64);
-/// assert_eq!(0_i128.cast_signed(), 0_i128);
-/// assert_eq!(0_isize.cast_signed(), 0_isize);
-/// ```
-pub trait CastSigned: sealed::Integer {
- /// The signed integer type with the same size as `Self`.
- type Signed;
-
- /// Cast an integer to the signed integer of the same size.
- fn cast_signed(self) -> Self::Signed;
-}
-
-/// Cast to an unsigned integer of the same size.
-///
-/// This trait is implemented for all integers. Signed to unsigned casts are equivalent to
-/// `0.wrapping_add_unsigned(value)`, while unsigned to unsigned casts are an identity conversion.
-///
-/// ```rust
-/// # use num_conv::CastUnsigned;
-/// assert_eq!((-1_i8).cast_unsigned(), u8::MAX);
-/// assert_eq!((-1_i16).cast_unsigned(), u16::MAX);
-/// assert_eq!((-1_i32).cast_unsigned(), u32::MAX);
-/// assert_eq!((-1_i64).cast_unsigned(), u64::MAX);
-/// assert_eq!((-1_i128).cast_unsigned(), u128::MAX);
-/// assert_eq!((-1_isize).cast_unsigned(), usize::MAX);
-/// ```
-///
-/// ```rust
-/// # use num_conv::CastUnsigned;
-/// assert_eq!(0_u8.cast_unsigned(), 0_u8);
-/// assert_eq!(0_u16.cast_unsigned(), 0_u16);
-/// assert_eq!(0_u32.cast_unsigned(), 0_u32);
-/// assert_eq!(0_u64.cast_unsigned(), 0_u64);
-/// assert_eq!(0_u128.cast_unsigned(), 0_u128);
-/// assert_eq!(0_usize.cast_unsigned(), 0_usize);
-/// ```
-pub trait CastUnsigned: sealed::Integer {
- /// The unsigned integer type with the same size as `Self`.
- type Unsigned;
-
- /// Cast an integer to the unsigned integer of the same size.
- fn cast_unsigned(self) -> Self::Unsigned;
-}
-
-/// A type that can be used with turbofish syntax in [`Extend::extend`].
-///
-/// It is unlikely that you will want to use this trait directly. You are probably looking for the
-/// [`Extend`] trait.
-pub trait ExtendTarget<T>: sealed::ExtendTargetSealed<T> {}
-
-/// A type that can be used with turbofish syntax in [`Truncate::truncate`].
-///
-/// It is unlikely that you will want to use this trait directly. You are probably looking for the
-/// [`Truncate`] trait.
-pub trait TruncateTarget<T>: sealed::TruncateTargetSealed<T> {}
-
-/// Extend to an integer of the same size or larger, preserving its value.
-///
-/// ```rust
-/// # use num_conv::Extend;
-/// assert_eq!(0_u8.extend::<u16>(), 0_u16);
-/// assert_eq!(0_u16.extend::<u32>(), 0_u32);
-/// assert_eq!(0_u32.extend::<u64>(), 0_u64);
-/// assert_eq!(0_u64.extend::<u128>(), 0_u128);
-/// ```
-///
-/// ```rust
-/// # use num_conv::Extend;
-/// assert_eq!((-1_i8).extend::<i16>(), -1_i16);
-/// assert_eq!((-1_i16).extend::<i32>(), -1_i32);
-/// assert_eq!((-1_i32).extend::<i64>(), -1_i64);
-/// assert_eq!((-1_i64).extend::<i128>(), -1_i128);
-/// ```
-pub trait Extend: sealed::Integer {
- /// Extend an integer to an integer of the same size or larger, preserving its value.
- fn extend<T>(self) -> T
- where
- Self: ExtendTarget<T>;
-}
-
-impl<T: sealed::Integer> Extend for T {
- fn extend<U>(self) -> U
- where
- T: ExtendTarget<U>,
- {
- sealed::ExtendTargetSealed::extend(self)
- }
-}
-
-/// Truncate to an integer of the same size or smaller, preserving the least significant bits.
-///
-/// ```rust
-/// # use num_conv::Truncate;
-/// assert_eq!(u16::MAX.truncate::<u8>(), u8::MAX);
-/// assert_eq!(u32::MAX.truncate::<u16>(), u16::MAX);
-/// assert_eq!(u64::MAX.truncate::<u32>(), u32::MAX);
-/// assert_eq!(u128::MAX.truncate::<u64>(), u64::MAX);
-/// ```
-///
-/// ```rust
-/// # use num_conv::Truncate;
-/// assert_eq!((-1_i16).truncate::<i8>(), -1_i8);
-/// assert_eq!((-1_i32).truncate::<i16>(), -1_i16);
-/// assert_eq!((-1_i64).truncate::<i32>(), -1_i32);
-/// assert_eq!((-1_i128).truncate::<i64>(), -1_i64);
-/// ```
-pub trait Truncate: sealed::Integer {
- /// Truncate an integer to an integer of the same size or smaller, preserving the least
- /// significant bits.
- fn truncate<T>(self) -> T
- where
- Self: TruncateTarget<T>;
-}
-
-impl<T: sealed::Integer> Truncate for T {
- fn truncate<U>(self) -> U
- where
- T: TruncateTarget<U>,
- {
- sealed::TruncateTargetSealed::truncate(self)
- }
-}
-
-macro_rules! impl_cast_signed {
- ($($($from:ty),+ => $to:ty;)*) => {$($(
- const _: () = assert!(
- core::mem::size_of::<$from>() == core::mem::size_of::<$to>(),
- concat!(
- "cannot cast ",
- stringify!($from),
- " to ",
- stringify!($to),
- " because they are different sizes"
- )
- );
-
- impl CastSigned for $from {
- type Signed = $to;
- fn cast_signed(self) -> Self::Signed {
- self as _
- }
- }
- )+)*};
-}
-
-macro_rules! impl_cast_unsigned {
- ($($($from:ty),+ => $to:ty;)*) => {$($(
- const _: () = assert!(
- core::mem::size_of::<$from>() == core::mem::size_of::<$to>(),
- concat!(
- "cannot cast ",
- stringify!($from),
- " to ",
- stringify!($to),
- " because they are different sizes"
- )
- );
-
- impl CastUnsigned for $from {
- type Unsigned = $to;
- fn cast_unsigned(self) -> Self::Unsigned {
- self as _
- }
- }
- )+)*};
-}
-
-macro_rules! impl_extend {
- ($($from:ty => $($to:ty),+;)*) => {$($(
- const _: () = assert!(
- core::mem::size_of::<$from>() <= core::mem::size_of::<$to>(),
- concat!(
- "cannot extend ",
- stringify!($from),
- " to ",
- stringify!($to),
- " because ",
- stringify!($from),
- " is larger than ",
- stringify!($to)
- )
- );
-
- impl sealed::ExtendTargetSealed<$to> for $from {
- fn extend(self) -> $to {
- self as _
- }
- }
-
- impl ExtendTarget<$to> for $from {}
- )+)*};
-}
-
-macro_rules! impl_truncate {
- ($($($from:ty),+ => $to:ty;)*) => {$($(
- const _: () = assert!(
- core::mem::size_of::<$from>() >= core::mem::size_of::<$to>(),
- concat!(
- "cannot truncate ",
- stringify!($from),
- " to ",
- stringify!($to),
- " because ",
- stringify!($from),
- " is smaller than ",
- stringify!($to)
- )
- );
-
- impl sealed::TruncateTargetSealed<$to> for $from {
- fn truncate(self) -> $to {
- self as _
- }
- }
-
- impl TruncateTarget<$to> for $from {}
- )+)*};
-}
-
-impl_cast_signed! {
- u8, i8 => i8;
- u16, i16 => i16;
- u32, i32 => i32;
- u64, i64 => i64;
- u128, i128 => i128;
- usize, isize => isize;
-}
-
-impl_cast_unsigned! {
- u8, i8 => u8;
- u16, i16 => u16;
- u32, i32 => u32;
- u64, i64 => u64;
- u128, i128 => u128;
- usize, isize => usize;
-}
-
-impl_extend! {
- u8 => u8, u16, u32, u64, u128, usize;
- u16 => u16, u32, u64, u128, usize;
- u32 => u32, u64, u128;
- u64 => u64, u128;
- u128 => u128;
- usize => usize;
-
- i8 => i8, i16, i32, i64, i128, isize;
- i16 => i16, i32, i64, i128, isize;
- i32 => i32, i64, i128;
- i64 => i64, i128;
- i128 => i128;
- isize => isize;
-}
-
-impl_truncate! {
- u8, u16, u32, u64, u128, usize => u8;
- u16, u32, u64, u128, usize => u16;
- u32, u64, u128 => u32;
- u64, u128 => u64;
- u128 => u128;
- usize => usize;
-
- i8, i16, i32, i64, i128, isize => i8;
- i16, i32, i64, i128, isize => i16;
- i32, i64, i128 => i32;
- i64, i128 => i64;
- i128 => i128;
- isize => isize;
-}