Struct otter_api_tests::imports::failure::_core::num::NonZeroI81.34.0[][src]

#[repr(transparent)]
pub struct NonZeroI8(_);
Expand description

An integer that is known not to equal zero.

This enables some memory layout optimization. For example, Option<NonZeroI8> is the same size as i8:

use std::mem::size_of;
assert_eq!(size_of::<Option<core::num::NonZeroI8>>(), size_of::<i8>());

Implementations

Creates a non-zero without checking the value.

Safety

The value must not be zero.

Creates a non-zero if the given value is not zero.

Returns the value as a primitive type.

Returns the number of leading zeros in the binary representation of self.

On many architectures, this function can perform better than leading_zeros() on the underlying integer type, as special handling of zero can be avoided.

Examples

Basic usage:

let n = std::num::NonZeroI8::new(-1i8).unwrap();

assert_eq!(n.leading_zeros(), 0);

Returns the number of trailing zeros in the binary representation of self.

On many architectures, this function can perform better than trailing_zeros() on the underlying integer type, as special handling of zero can be avoided.

Examples

Basic usage:

let n = std::num::NonZeroI8::new(0b0101000).unwrap();

assert_eq!(n.trailing_zeros(), 3);

Trait Implementations

Formats the value using the given formatter.

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

Performs the |= operation. Read more

Performs the |= operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

Converts a NonZeroI8 into an i8

Converts NonZeroI8 to NonZeroIsize losslessly.

Converts NonZeroI8 to NonZeroI128 losslessly.

Converts NonZeroI8 to NonZeroI32 losslessly.

Converts NonZeroI8 to NonZeroI64 losslessly.

Converts NonZeroI8 to NonZeroI16 losslessly.

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

Formats the value using the given formatter.

Formats the value using the given formatter.

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Serialize this value into the given Serde serializer. Read more

Attempts to convert NonZeroI128 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI16 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI32 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI64 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI8 to NonZeroUsize.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI8 to NonZeroU8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI8 to NonZeroU128.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI8 to NonZeroU16.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI8 to NonZeroU64.

The type returned in the event of a conversion error.

Attempts to convert NonZeroI8 to NonZeroU32.

The type returned in the event of a conversion error.

Attempts to convert NonZeroIsize to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroU128 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroU16 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroU32 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroU64 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroU8 to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert NonZeroUsize to NonZeroI8.

The type returned in the event of a conversion error.

Attempts to convert i8 to NonZeroI8.

The type returned in the event of a conversion error.

Formats the value using the given formatter.

Visits this value with the given Visitor.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Use this to cast from one trait object type to another. Read more

Use this to upcast a trait to one of its supertraits. Read more

Use this to cast from one trait object type to another. This method is more customizable than the dyn_cast method. Here you can also specify the “source” trait from which the cast is defined. This can for example allow using casts from a supertrait of the current trait object. Read more

Use this to cast from one trait object type to another. With this method the type parameter is a config type that uniquely specifies which cast should be preformed. Read more

Compare self to key and return true if they are equal.

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.