Struct amplify::num::u4[][src]

pub struct u4(_);
Expand description

5-bit unsigned integer in the range 0..16

Implementations

impl u4[src]

pub const BITS: u32[src]

Bit dimension

pub const MIN: Self[src]

Minimum value

pub const MAX: Self[src]

Maximal value

Methods from Deref<Target = u8>

pub const MIN: u81.43.0[src]

pub const MAX: u81.43.0[src]

pub const BITS: u321.53.0[src]

pub fn as_ne_bytes(&self) -> &[u8; 1][src]

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

Return the memory representation of this integer as a byte array in native byte order.

to_ne_bytes should be preferred over this whenever possible.

Examples

#![feature(num_as_ne_bytes)]
let num = 0x12u8;
let bytes = num.as_ne_bytes();
assert_eq!(
    bytes,
    if cfg!(target_endian = "big") {
        &[0x12]
    } else {
        &[0x12]
    }
);

pub const fn is_ascii(&self) -> bool1.23.0 (const: 1.43.0)[src]

Checks if the value is within the ASCII range.

Examples

let ascii = 97u8;
let non_ascii = 150u8;

assert!(ascii.is_ascii());
assert!(!non_ascii.is_ascii());

pub const fn to_ascii_uppercase(&self) -> u81.23.0 (const: 1.52.0)[src]

Makes a copy of the value in its ASCII upper case equivalent.

ASCII letters ‘a’ to ‘z’ are mapped to ‘A’ to ‘Z’, but non-ASCII letters are unchanged.

To uppercase the value in-place, use make_ascii_uppercase.

Examples

let lowercase_a = 97u8;

assert_eq!(65, lowercase_a.to_ascii_uppercase());

pub const fn to_ascii_lowercase(&self) -> u81.23.0 (const: 1.52.0)[src]

Makes a copy of the value in its ASCII lower case equivalent.

ASCII letters ‘A’ to ‘Z’ are mapped to ‘a’ to ‘z’, but non-ASCII letters are unchanged.

To lowercase the value in-place, use make_ascii_lowercase.

Examples

let uppercase_a = 65u8;

assert_eq!(97, uppercase_a.to_ascii_lowercase());

pub const fn eq_ignore_ascii_case(&self, other: &u8) -> bool1.23.0 (const: 1.52.0)[src]

Checks that two values are an ASCII case-insensitive match.

This is equivalent to to_ascii_lowercase(a) == to_ascii_lowercase(b).

Examples

let lowercase_a = 97u8;
let uppercase_a = 65u8;

assert!(lowercase_a.eq_ignore_ascii_case(&uppercase_a));

pub const fn is_ascii_alphabetic(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII alphabetic character:

  • U+0041 ‘A’ ..= U+005A ‘Z’, or
  • U+0061 ‘a’ ..= U+007A ‘z’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(uppercase_a.is_ascii_alphabetic());
assert!(uppercase_g.is_ascii_alphabetic());
assert!(a.is_ascii_alphabetic());
assert!(g.is_ascii_alphabetic());
assert!(!zero.is_ascii_alphabetic());
assert!(!percent.is_ascii_alphabetic());
assert!(!space.is_ascii_alphabetic());
assert!(!lf.is_ascii_alphabetic());
assert!(!esc.is_ascii_alphabetic());

pub const fn is_ascii_uppercase(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII uppercase character: U+0041 ‘A’ ..= U+005A ‘Z’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(uppercase_a.is_ascii_uppercase());
assert!(uppercase_g.is_ascii_uppercase());
assert!(!a.is_ascii_uppercase());
assert!(!g.is_ascii_uppercase());
assert!(!zero.is_ascii_uppercase());
assert!(!percent.is_ascii_uppercase());
assert!(!space.is_ascii_uppercase());
assert!(!lf.is_ascii_uppercase());
assert!(!esc.is_ascii_uppercase());

pub const fn is_ascii_lowercase(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII lowercase character: U+0061 ‘a’ ..= U+007A ‘z’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(!uppercase_a.is_ascii_lowercase());
assert!(!uppercase_g.is_ascii_lowercase());
assert!(a.is_ascii_lowercase());
assert!(g.is_ascii_lowercase());
assert!(!zero.is_ascii_lowercase());
assert!(!percent.is_ascii_lowercase());
assert!(!space.is_ascii_lowercase());
assert!(!lf.is_ascii_lowercase());
assert!(!esc.is_ascii_lowercase());

pub const fn is_ascii_alphanumeric(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII alphanumeric character:

  • U+0041 ‘A’ ..= U+005A ‘Z’, or
  • U+0061 ‘a’ ..= U+007A ‘z’, or
  • U+0030 ‘0’ ..= U+0039 ‘9’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(uppercase_a.is_ascii_alphanumeric());
assert!(uppercase_g.is_ascii_alphanumeric());
assert!(a.is_ascii_alphanumeric());
assert!(g.is_ascii_alphanumeric());
assert!(zero.is_ascii_alphanumeric());
assert!(!percent.is_ascii_alphanumeric());
assert!(!space.is_ascii_alphanumeric());
assert!(!lf.is_ascii_alphanumeric());
assert!(!esc.is_ascii_alphanumeric());

pub const fn is_ascii_digit(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII decimal digit: U+0030 ‘0’ ..= U+0039 ‘9’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(!uppercase_a.is_ascii_digit());
assert!(!uppercase_g.is_ascii_digit());
assert!(!a.is_ascii_digit());
assert!(!g.is_ascii_digit());
assert!(zero.is_ascii_digit());
assert!(!percent.is_ascii_digit());
assert!(!space.is_ascii_digit());
assert!(!lf.is_ascii_digit());
assert!(!esc.is_ascii_digit());

pub const fn is_ascii_hexdigit(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII hexadecimal digit:

  • U+0030 ‘0’ ..= U+0039 ‘9’, or
  • U+0041 ‘A’ ..= U+0046 ‘F’, or
  • U+0061 ‘a’ ..= U+0066 ‘f’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(uppercase_a.is_ascii_hexdigit());
assert!(!uppercase_g.is_ascii_hexdigit());
assert!(a.is_ascii_hexdigit());
assert!(!g.is_ascii_hexdigit());
assert!(zero.is_ascii_hexdigit());
assert!(!percent.is_ascii_hexdigit());
assert!(!space.is_ascii_hexdigit());
assert!(!lf.is_ascii_hexdigit());
assert!(!esc.is_ascii_hexdigit());

pub const fn is_ascii_punctuation(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII punctuation character:

  • U+0021 ..= U+002F ! " # $ % & ' ( ) * + , - . /, or
  • U+003A ..= U+0040 : ; < = > ? @, or
  • U+005B ..= U+0060 [ \ ] ^ _ ` , or
  • U+007B ..= U+007E { | } ~

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(!uppercase_a.is_ascii_punctuation());
assert!(!uppercase_g.is_ascii_punctuation());
assert!(!a.is_ascii_punctuation());
assert!(!g.is_ascii_punctuation());
assert!(!zero.is_ascii_punctuation());
assert!(percent.is_ascii_punctuation());
assert!(!space.is_ascii_punctuation());
assert!(!lf.is_ascii_punctuation());
assert!(!esc.is_ascii_punctuation());

pub const fn is_ascii_graphic(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII graphic character: U+0021 ‘!’ ..= U+007E ‘~’.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(uppercase_a.is_ascii_graphic());
assert!(uppercase_g.is_ascii_graphic());
assert!(a.is_ascii_graphic());
assert!(g.is_ascii_graphic());
assert!(zero.is_ascii_graphic());
assert!(percent.is_ascii_graphic());
assert!(!space.is_ascii_graphic());
assert!(!lf.is_ascii_graphic());
assert!(!esc.is_ascii_graphic());

pub const fn is_ascii_whitespace(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII whitespace character: U+0020 SPACE, U+0009 HORIZONTAL TAB, U+000A LINE FEED, U+000C FORM FEED, or U+000D CARRIAGE RETURN.

Rust uses the WhatWG Infra Standard’s definition of ASCII whitespace. There are several other definitions in wide use. For instance, the POSIX locale includes U+000B VERTICAL TAB as well as all the above characters, but—from the very same specification—the default rule for “field splitting” in the Bourne shell considers only SPACE, HORIZONTAL TAB, and LINE FEED as whitespace.

If you are writing a program that will process an existing file format, check what that format’s definition of whitespace is before using this function.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(!uppercase_a.is_ascii_whitespace());
assert!(!uppercase_g.is_ascii_whitespace());
assert!(!a.is_ascii_whitespace());
assert!(!g.is_ascii_whitespace());
assert!(!zero.is_ascii_whitespace());
assert!(!percent.is_ascii_whitespace());
assert!(space.is_ascii_whitespace());
assert!(lf.is_ascii_whitespace());
assert!(!esc.is_ascii_whitespace());

pub const fn is_ascii_control(&self) -> bool1.24.0 (const: 1.47.0)[src]

Checks if the value is an ASCII control character: U+0000 NUL ..= U+001F UNIT SEPARATOR, or U+007F DELETE. Note that most ASCII whitespace characters are control characters, but SPACE is not.

Examples

let uppercase_a = b'A';
let uppercase_g = b'G';
let a = b'a';
let g = b'g';
let zero = b'0';
let percent = b'%';
let space = b' ';
let lf = b'\n';
let esc = 0x1b_u8;

assert!(!uppercase_a.is_ascii_control());
assert!(!uppercase_g.is_ascii_control());
assert!(!a.is_ascii_control());
assert!(!g.is_ascii_control());
assert!(!zero.is_ascii_control());
assert!(!percent.is_ascii_control());
assert!(!space.is_ascii_control());
assert!(lf.is_ascii_control());
assert!(esc.is_ascii_control());

pub fn escape_ascii(&self) -> EscapeDefault[src]

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

Returns an iterator that produces an escaped version of a u8, treating it as an ASCII character.

The behavior is identical to ascii::escape_default.

Examples

#![feature(inherent_ascii_escape)]

assert_eq!("0", b'0'.escape_ascii().to_string());
assert_eq!("\\t", b'\t'.escape_ascii().to_string());
assert_eq!("\\r", b'\r'.escape_ascii().to_string());
assert_eq!("\\n", b'\n'.escape_ascii().to_string());
assert_eq!("\\'", b'\''.escape_ascii().to_string());
assert_eq!("\\\"", b'"'.escape_ascii().to_string());
assert_eq!("\\\\", b'\\'.escape_ascii().to_string());
assert_eq!("\\x9d", b'\x9d'.escape_ascii().to_string());

Trait Implementations

impl Add<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: Self) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: &u4) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: &u8) -> Self::Output[src]

Performs the + operation. Read more

impl Add<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: &u8) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u4> for u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: Self) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u4> for &u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: u4) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u8> for u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: u8) -> Self::Output[src]

Performs the + operation. Read more

impl Add<u8> for &u4[src]

type Output = u4

The resulting type after applying the + operator.

fn add(self, rhs: u8) -> Self::Output[src]

Performs the + operation. Read more

impl AddAssign<&'_ u4> for u4[src]

fn add_assign(&mut self, rhs: &u4)[src]

Performs the += operation. Read more

impl AddAssign<&'_ u8> for u4[src]

fn add_assign(&mut self, rhs: &u8)[src]

Performs the += operation. Read more

impl AddAssign<u4> for u4[src]

fn add_assign(&mut self, rhs: Self)[src]

Performs the += operation. Read more

impl AddAssign<u8> for u4[src]

fn add_assign(&mut self, rhs: u8)[src]

Performs the += operation. Read more

impl AsRef<u8> for u4[src]

fn as_ref(&self) -> &u8[src]

Performs the conversion.

impl BitAnd<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: Self) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: &u4) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: &u8) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: &u8) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u4> for u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: Self) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u4> for &u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: u4) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u8> for u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: u8) -> Self::Output[src]

Performs the & operation. Read more

impl BitAnd<u8> for &u4[src]

type Output = u4

The resulting type after applying the & operator.

fn bitand(self, rhs: u8) -> Self::Output[src]

Performs the & operation. Read more

impl BitAndAssign<&'_ u4> for u4[src]

fn bitand_assign(&mut self, rhs: &u4)[src]

Performs the &= operation. Read more

impl BitAndAssign<&'_ u8> for u4[src]

fn bitand_assign(&mut self, rhs: &u8)[src]

Performs the &= operation. Read more

impl BitAndAssign<u4> for u4[src]

fn bitand_assign(&mut self, rhs: Self)[src]

Performs the &= operation. Read more

impl BitAndAssign<u8> for u4[src]

fn bitand_assign(&mut self, rhs: u8)[src]

Performs the &= operation. Read more

impl BitOr<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: Self) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: &u4) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: &u8) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: &u8) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u4> for u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: Self) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u4> for &u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: u4) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u8> for u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: u8) -> Self::Output[src]

Performs the | operation. Read more

impl BitOr<u8> for &u4[src]

type Output = u4

The resulting type after applying the | operator.

fn bitor(self, rhs: u8) -> Self::Output[src]

Performs the | operation. Read more

impl BitOrAssign<&'_ u4> for u4[src]

fn bitor_assign(&mut self, rhs: &u4)[src]

Performs the |= operation. Read more

impl BitOrAssign<&'_ u8> for u4[src]

fn bitor_assign(&mut self, rhs: &u8)[src]

Performs the |= operation. Read more

impl BitOrAssign<u4> for u4[src]

fn bitor_assign(&mut self, rhs: Self)[src]

Performs the |= operation. Read more

impl BitOrAssign<u8> for u4[src]

fn bitor_assign(&mut self, rhs: u8)[src]

Performs the |= operation. Read more

impl BitXor<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: Self) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: &u4) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: &u8) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: &u8) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u4> for u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: Self) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u4> for &u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: u4) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u8> for u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: u8) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXor<u8> for &u4[src]

type Output = u4

The resulting type after applying the ^ operator.

fn bitxor(self, rhs: u8) -> Self::Output[src]

Performs the ^ operation. Read more

impl BitXorAssign<&'_ u4> for u4[src]

fn bitxor_assign(&mut self, rhs: &u4)[src]

Performs the ^= operation. Read more

impl BitXorAssign<&'_ u8> for u4[src]

fn bitxor_assign(&mut self, rhs: &u8)[src]

Performs the ^= operation. Read more

impl BitXorAssign<u4> for u4[src]

fn bitxor_assign(&mut self, rhs: Self)[src]

Performs the ^= operation. Read more

impl BitXorAssign<u8> for u4[src]

fn bitxor_assign(&mut self, rhs: u8)[src]

Performs the ^= operation. Read more

impl Clone for u4[src]

fn clone(&self) -> u4[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for u4[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for u4[src]

fn default() -> u4[src]

Returns the “default value” for a type. Read more

impl Deref for u4[src]

type Target = u8

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

impl Display for u4[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Div<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: Self) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: &u4) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: &u8) -> Self::Output[src]

Performs the / operation. Read more

impl Div<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: &u8) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u4> for u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: Self) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u4> for &u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: u4) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u8> for u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: u8) -> Self::Output[src]

Performs the / operation. Read more

impl Div<u8> for &u4[src]

type Output = u4

The resulting type after applying the / operator.

fn div(self, rhs: u8) -> Self::Output[src]

Performs the / operation. Read more

impl DivAssign<&'_ u4> for u4[src]

fn div_assign(&mut self, rhs: &u4)[src]

Performs the /= operation. Read more

impl DivAssign<&'_ u8> for u4[src]

fn div_assign(&mut self, rhs: &u8)[src]

Performs the /= operation. Read more

impl DivAssign<u4> for u4[src]

fn div_assign(&mut self, rhs: Self)[src]

Performs the /= operation. Read more

impl DivAssign<u8> for u4[src]

fn div_assign(&mut self, rhs: u8)[src]

Performs the /= operation. Read more

impl From<u4> for u8[src]

fn from(val: u4) -> Self[src]

Performs the conversion.

impl FromStr for u4[src]

type Err = ParseIntError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

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

impl Hash for u4[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

impl Mul<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: Self) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: &u4) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: &u8) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: &u8) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u4> for u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: Self) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u4> for &u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: u4) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u8> for u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: u8) -> Self::Output[src]

Performs the * operation. Read more

impl Mul<u8> for &u4[src]

type Output = u4

The resulting type after applying the * operator.

fn mul(self, rhs: u8) -> Self::Output[src]

Performs the * operation. Read more

impl MulAssign<&'_ u4> for u4[src]

fn mul_assign(&mut self, rhs: &u4)[src]

Performs the *= operation. Read more

impl MulAssign<&'_ u8> for u4[src]

fn mul_assign(&mut self, rhs: &u8)[src]

Performs the *= operation. Read more

impl MulAssign<u4> for u4[src]

fn mul_assign(&mut self, rhs: Self)[src]

Performs the *= operation. Read more

impl MulAssign<u8> for u4[src]

fn mul_assign(&mut self, rhs: u8)[src]

Performs the *= operation. Read more

impl Ord for u4[src]

fn cmp(&self, other: &u4) -> Ordering[src]

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

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<u4> for u4[src]

fn eq(&self, other: &u4) -> bool[src]

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

fn ne(&self, other: &u4) -> bool[src]

This method tests for !=.

impl PartialOrd<u4> for u4[src]

fn partial_cmp(&self, other: &u4) -> Option<Ordering>[src]

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

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

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

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

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

impl Rem<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: Self) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: &u4) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: &u8) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: &u8) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u4> for u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: Self) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u4> for &u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: u4) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u8> for u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: u8) -> Self::Output[src]

Performs the % operation. Read more

impl Rem<u8> for &u4[src]

type Output = u4

The resulting type after applying the % operator.

fn rem(self, rhs: u8) -> Self::Output[src]

Performs the % operation. Read more

impl RemAssign<&'_ u4> for u4[src]

fn rem_assign(&mut self, rhs: &u4)[src]

Performs the %= operation. Read more

impl RemAssign<&'_ u8> for u4[src]

fn rem_assign(&mut self, rhs: &u8)[src]

Performs the %= operation. Read more

impl RemAssign<u4> for u4[src]

fn rem_assign(&mut self, rhs: Self)[src]

Performs the %= operation. Read more

impl RemAssign<u8> for u4[src]

fn rem_assign(&mut self, rhs: u8)[src]

Performs the %= operation. Read more

impl Shl<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: Self) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: &u4) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: &u8) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: &u8) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u4> for u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: Self) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u4> for &u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: u4) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u8> for u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: u8) -> Self::Output[src]

Performs the << operation. Read more

impl Shl<u8> for &u4[src]

type Output = u4

The resulting type after applying the << operator.

fn shl(self, rhs: u8) -> Self::Output[src]

Performs the << operation. Read more

impl ShlAssign<&'_ u4> for u4[src]

fn shl_assign(&mut self, rhs: &u4)[src]

Performs the <<= operation. Read more

impl ShlAssign<&'_ u8> for u4[src]

fn shl_assign(&mut self, rhs: &u8)[src]

Performs the <<= operation. Read more

impl ShlAssign<u4> for u4[src]

fn shl_assign(&mut self, rhs: Self)[src]

Performs the <<= operation. Read more

impl ShlAssign<u8> for u4[src]

fn shl_assign(&mut self, rhs: u8)[src]

Performs the <<= operation. Read more

impl Shr<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: Self) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: &u4) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: &u8) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: &u8) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u4> for u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: Self) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u4> for &u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: u4) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u8> for u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: u8) -> Self::Output[src]

Performs the >> operation. Read more

impl Shr<u8> for &u4[src]

type Output = u4

The resulting type after applying the >> operator.

fn shr(self, rhs: u8) -> Self::Output[src]

Performs the >> operation. Read more

impl ShrAssign<&'_ u4> for u4[src]

fn shr_assign(&mut self, rhs: &u4)[src]

Performs the >>= operation. Read more

impl ShrAssign<&'_ u8> for u4[src]

fn shr_assign(&mut self, rhs: &u8)[src]

Performs the >>= operation. Read more

impl ShrAssign<u4> for u4[src]

fn shr_assign(&mut self, rhs: Self)[src]

Performs the >>= operation. Read more

impl ShrAssign<u8> for u4[src]

fn shr_assign(&mut self, rhs: u8)[src]

Performs the >>= operation. Read more

impl Sub<&'_ u4> for &u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: Self) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u4> for u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: &u4) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u8> for &u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: &u8) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<&'_ u8> for u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: &u8) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u4> for u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: Self) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u4> for &u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: u4) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u8> for u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: u8) -> Self::Output[src]

Performs the - operation. Read more

impl Sub<u8> for &u4[src]

type Output = u4

The resulting type after applying the - operator.

fn sub(self, rhs: u8) -> Self::Output[src]

Performs the - operation. Read more

impl SubAssign<&'_ u4> for u4[src]

fn sub_assign(&mut self, rhs: &u4)[src]

Performs the -= operation. Read more

impl SubAssign<&'_ u8> for u4[src]

fn sub_assign(&mut self, rhs: &u8)[src]

Performs the -= operation. Read more

impl SubAssign<u4> for u4[src]

fn sub_assign(&mut self, rhs: Self)[src]

Performs the -= operation. Read more

impl SubAssign<u8> for u4[src]

fn sub_assign(&mut self, rhs: u8)[src]

Performs the -= operation. Read more

impl TryFrom<u8> for u4[src]

type Error = ValueOverflow

The type returned in the event of a conversion error.

fn try_from(value: u8) -> Result<Self, Self::Error>[src]

Performs the conversion.

impl Copy for u4[src]

impl Eq for u4[src]

impl StructuralEq for u4[src]

impl StructuralPartialEq for u4[src]

Auto Trait Implementations

impl RefUnwindSafe for u4

impl Send for u4

impl Sync for u4

impl Unpin for u4

impl UnwindSafe for u4

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.