Struct amplify::num::u7[][src]

pub struct u7(_);
Expand description

7-bit unsigned integer in the range 0..128

Implementations

impl u7[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<&'_ u7> for &u7[src]

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

impl Add<u7> for u7[src]

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

impl Add<u7> for &u7[src]

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

impl Add<u8> for u7[src]

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

impl Add<u8> for &u7[src]

type Output = u7

The resulting type after applying the + operator.

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

Performs the + operation. Read more

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

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

Performs the += operation. Read more

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

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

Performs the += operation. Read more

impl AddAssign<u7> for u7[src]

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

Performs the += operation. Read more

impl AddAssign<u8> for u7[src]

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

Performs the += operation. Read more

impl AsRef<u8> for u7[src]

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

Performs the conversion.

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

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

impl BitAnd<u7> for u7[src]

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

impl BitAnd<u7> for &u7[src]

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

impl BitAnd<u8> for u7[src]

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

impl BitAnd<u8> for &u7[src]

type Output = u7

The resulting type after applying the & operator.

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

Performs the & operation. Read more

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

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

Performs the &= operation. Read more

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

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

Performs the &= operation. Read more

impl BitAndAssign<u7> for u7[src]

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

Performs the &= operation. Read more

impl BitAndAssign<u8> for u7[src]

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

Performs the &= operation. Read more

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

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<u7> for u7[src]

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<u7> for &u7[src]

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<u8> for u7[src]

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

impl BitOr<u8> for &u7[src]

type Output = u7

The resulting type after applying the | operator.

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

Performs the | operation. Read more

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

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

Performs the |= operation. Read more

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

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

Performs the |= operation. Read more

impl BitOrAssign<u7> for u7[src]

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

Performs the |= operation. Read more

impl BitOrAssign<u8> for u7[src]

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

Performs the |= operation. Read more

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

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

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

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

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

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

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

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<u7> for u7[src]

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<u7> for &u7[src]

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<u8> for u7[src]

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

impl BitXor<u8> for &u7[src]

type Output = u7

The resulting type after applying the ^ operator.

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

Performs the ^ operation. Read more

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

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

Performs the ^= operation. Read more

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

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

Performs the ^= operation. Read more

impl BitXorAssign<u7> for u7[src]

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

Performs the ^= operation. Read more

impl BitXorAssign<u8> for u7[src]

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

Performs the ^= operation. Read more

impl Clone for u7[src]

fn clone(&self) -> u7[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 u7[src]

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

Formats the value using the given formatter. Read more

impl Default for u7[src]

fn default() -> u7[src]

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

impl Deref for u7[src]

type Target = u8

The resulting type after dereferencing.

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

Dereferences the value.

impl Display for u7[src]

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

Formats the value using the given formatter. Read more

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

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

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

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

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

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

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

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<u7> for u7[src]

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<u7> for &u7[src]

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<u8> for u7[src]

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

impl Div<u8> for &u7[src]

type Output = u7

The resulting type after applying the / operator.

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

Performs the / operation. Read more

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

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

Performs the /= operation. Read more

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

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

Performs the /= operation. Read more

impl DivAssign<u7> for u7[src]

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

Performs the /= operation. Read more

impl DivAssign<u8> for u7[src]

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

Performs the /= operation. Read more

impl From<u7> for u8[src]

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

Performs the conversion.

impl FromStr for u7[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 u7[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<&'_ u7> for &u7[src]

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<u7> for u7[src]

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<u7> for &u7[src]

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<u8> for u7[src]

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

impl Mul<u8> for &u7[src]

type Output = u7

The resulting type after applying the * operator.

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

Performs the * operation. Read more

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

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

Performs the *= operation. Read more

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

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

Performs the *= operation. Read more

impl MulAssign<u7> for u7[src]

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

Performs the *= operation. Read more

impl MulAssign<u8> for u7[src]

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

Performs the *= operation. Read more

impl Ord for u7[src]

fn cmp(&self, other: &u7) -> 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<u7> for u7[src]

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

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

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

This method tests for !=.

impl PartialOrd<u7> for u7[src]

fn partial_cmp(&self, other: &u7) -> 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<&'_ u7> for &u7[src]

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

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

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

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

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

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

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<u7> for u7[src]

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<u7> for &u7[src]

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<u8> for u7[src]

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

impl Rem<u8> for &u7[src]

type Output = u7

The resulting type after applying the % operator.

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

Performs the % operation. Read more

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

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

Performs the %= operation. Read more

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

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

Performs the %= operation. Read more

impl RemAssign<u7> for u7[src]

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

Performs the %= operation. Read more

impl RemAssign<u8> for u7[src]

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

Performs the %= operation. Read more

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

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

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

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

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

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

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

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<u7> for u7[src]

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<u7> for &u7[src]

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<u8> for u7[src]

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

impl Shl<u8> for &u7[src]

type Output = u7

The resulting type after applying the << operator.

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

Performs the << operation. Read more

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

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

Performs the <<= operation. Read more

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

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

Performs the <<= operation. Read more

impl ShlAssign<u7> for u7[src]

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

Performs the <<= operation. Read more

impl ShlAssign<u8> for u7[src]

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

Performs the <<= operation. Read more

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

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

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

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

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

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

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

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

impl Shr<u7> for u7[src]

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

impl Shr<u7> for &u7[src]

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

impl Shr<u8> for u7[src]

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

impl Shr<u8> for &u7[src]

type Output = u7

The resulting type after applying the >> operator.

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

Performs the >> operation. Read more

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

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

Performs the >>= operation. Read more

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

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

Performs the >>= operation. Read more

impl ShrAssign<u7> for u7[src]

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

Performs the >>= operation. Read more

impl ShrAssign<u8> for u7[src]

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

Performs the >>= operation. Read more

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

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

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

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

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

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

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

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

impl Sub<u7> for u7[src]

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

impl Sub<u7> for &u7[src]

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

impl Sub<u8> for u7[src]

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

impl Sub<u8> for &u7[src]

type Output = u7

The resulting type after applying the - operator.

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

Performs the - operation. Read more

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

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

Performs the -= operation. Read more

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

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

Performs the -= operation. Read more

impl SubAssign<u7> for u7[src]

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

Performs the -= operation. Read more

impl SubAssign<u8> for u7[src]

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

Performs the -= operation. Read more

impl TryFrom<u8> for u7[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 u7[src]

impl Eq for u7[src]

impl StructuralEq for u7[src]

impl StructuralPartialEq for u7[src]

Auto Trait Implementations

impl RefUnwindSafe for u7

impl Send for u7

impl Sync for u7

impl Unpin for u7

impl UnwindSafe for u7

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.