Enum iced_x86::NumberKind
source · #[non_exhaustive]
pub enum NumberKind {
Int8,
UInt8,
Int16,
UInt16,
Int32,
UInt32,
Int64,
UInt64,
}
Expand description
Number 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.
Implementations§
source§impl NumberKind
impl NumberKind
sourcepub fn values(
) -> impl Iterator<Item = NumberKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
pub fn values( ) -> impl Iterator<Item = NumberKind> + DoubleEndedIterator + ExactSizeIterator + FusedIterator
Iterates over all NumberKind
enum values
Trait Implementations§
source§impl Clone for NumberKind
impl Clone for NumberKind
source§fn clone(&self) -> NumberKind
fn clone(&self) -> NumberKind
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NumberKind
impl Debug for NumberKind
source§impl Default for NumberKind
impl Default for NumberKind
source§impl Hash for NumberKind
impl Hash for NumberKind
source§impl Ord for NumberKind
impl Ord for NumberKind
source§impl PartialEq<NumberKind> for NumberKind
impl PartialEq<NumberKind> for NumberKind
source§impl PartialOrd<NumberKind> for NumberKind
impl PartialOrd<NumberKind> for NumberKind
source§impl TryFrom<usize> for NumberKind
impl TryFrom<usize> for NumberKind
impl Copy for NumberKind
impl Eq for NumberKind
impl StructuralEq for NumberKind
impl StructuralPartialEq for NumberKind
Auto Trait Implementations§
impl RefUnwindSafe for NumberKind
impl Send for NumberKind
impl Sync for NumberKind
impl Unpin for NumberKind
impl UnwindSafe for NumberKind
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
const: unstable§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more