Union nibble::base::u4lo [] [src]

#[repr(C)]
pub union u4lo { // some fields omitted }

A nibble stored in the low-order bits of a byte.

Trait Implementations

impl PartialEq<u4hi> for u4lo
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<u4lo> for u4lo
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialEq<u8> for u4lo
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialOrd<u4hi> for u4lo
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

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 PartialOrd<u4lo> for u4lo
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

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 PartialOrd<u8> for u4lo
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

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 Hash for u4lo
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

impl Eq for u4lo
[src]

impl Ord for u4lo
[src]

[src]

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

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl Binary for u4lo
[src]

[src]

Formats the value using the given formatter.

impl Octal for u4lo
[src]

[src]

Formats the value using the given formatter.

impl LowerHex for u4lo
[src]

[src]

Formats the value using the given formatter.

impl UpperHex for u4lo
[src]

[src]

Formats the value using the given formatter.

impl Debug for u4lo
[src]

[src]

Formats the value using the given formatter.

impl Display for u4lo
[src]

[src]

Formats the value using the given formatter. Read more

impl FromStr for u4lo
[src]

Parses a string into a nibble.

This assumes that single digits are in hexadecimal, and larger strings are in decimal. For more control, use from_str_radix instead.

The associated error which can be returned from parsing.

[src]

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

impl CheckedAdd for u4lo
[src]

[src]

Adds two numbers, checking for overflow. If overflow happens, None is returned. Read more

impl CheckedSub for u4lo
[src]

[src]

Subtracts two numbers, checking for underflow. If underflow happens, None is returned. Read more

impl CheckedMul for u4lo
[src]

[src]

Multiplies two numbers, checking for underflow or overflow. If underflow or overflow happens, None is returned. Read more

impl CheckedDiv for u4lo
[src]

[src]

Divides two numbers, checking for underflow, overflow and division by zero. If any of that happens, None is returned. Read more

impl WrappingAdd for u4lo
[src]

[src]

Wrapping (modular) addition. Computes self + other, wrapping around at the boundary of the type. Read more

impl WrappingSub for u4lo
[src]

[src]

Wrapping (modular) subtraction. Computes self - other, wrapping around at the boundary of the type. Read more

impl WrappingMul for u4lo
[src]

[src]

Wrapping (modular) multiplication. Computes self * other, wrapping around at the boundary of the type. Read more

impl Saturating for u4lo
[src]

[src]

Saturating addition operator. Returns a+b, saturating at the numeric bounds instead of overflowing. Read more

[src]

Saturating subtraction operator. Returns a-b, saturating at the numeric bounds instead of overflowing. Read more

impl Bounded for u4lo
[src]

[src]

returns the smallest finite number this type can represent

[src]

returns the largest finite number this type can represent

impl Zero for u4lo
[src]

[src]

Returns the additive identity element of Self, 0. Read more

[src]

Returns true if self is equal to the additive identity.

impl One for u4lo
[src]

[src]

Returns the multiplicative identity element of Self, 1. Read more

impl Unsigned for u4lo
[src]

impl FromPrimitive for u4lo
[src]

[src]

Convert an i64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an u64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an isize to return an optional value of this type. If the value cannot be represented by this value, the None is returned. Read more

[src]

Convert an i8 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an i16 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an i32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert a usize to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an u8 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an u16 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert an u32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert a f32 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

[src]

Convert a f64 to return an optional value of this type. If the type cannot be represented by this value, the None is returned. Read more

impl NumCast for u4lo
[src]

[src]

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. Read more

impl ToPrimitive for u4lo
[src]

[src]

Converts the value of self to an i64.

[src]

Converts the value of self to an u64.

[src]

Converts the value of self to an isize.

[src]

Converts the value of self to an i8.

[src]

Converts the value of self to an i16.

[src]

Converts the value of self to an i32.

[src]

Converts the value of self to a usize.

[src]

Converts the value of self to an u8.

[src]

Converts the value of self to an u16.

[src]

Converts the value of self to an u32.

[src]

Converts the value of self to an f32.

[src]

Converts the value of self to an f64.

impl PrimInt for u4lo
[src]

[src]

Returns the number of ones in the binary representation of self. Read more

[src]

Returns the number of zeros in the binary representation of self. Read more

[src]

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

[src]

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

[src]

Shifts the bits to the left by a specified amount amount, n, wrapping the truncated bits to the end of the resulting integer. Read more

[src]

Shifts the bits to the right by a specified amount amount, n, wrapping the truncated bits to the beginning of the resulting integer. Read more

[src]

Shifts the bits to the left by a specified amount amount, n, filling zeros in the least significant bits. Read more

[src]

Shifts the bits to the right by a specified amount amount, n, copying the "sign bit" in the most significant bits even for unsigned types. Read more

[src]

Shifts the bits to the left by a specified amount amount, n, filling zeros in the least significant bits. Read more

[src]

Shifts the bits to the right by a specified amount amount, n, filling zeros in the most significant bits. Read more

[src]

Reverses the byte order of the integer. Read more

[src]

Convert an integer from big endian to the target's endianness. Read more

[src]

Convert an integer from little endian to the target's endianness. Read more

[src]

Convert self to big endian from the target's endianness. Read more

[src]

Convert self to little endian from the target's endianness. Read more

[src]

Raises self to the power of exp, using exponentiation by squaring. Read more

impl Num for u4lo
[src]

[src]

Convert from a string and radix <= 36. Read more

impl<'rhs> Add<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<'rhs, 'lhs> Add<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl<'lhs> Add<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl AddAssign<u4lo> for u4lo
[src]

[src]

Performs the += operation.

impl<'rhs> AddAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the += operation.

impl<'rhs> Sub<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<'rhs, 'lhs> Sub<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl<'lhs> Sub<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl SubAssign<u4lo> for u4lo
[src]

[src]

Performs the -= operation.

impl<'rhs> SubAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the -= operation.

impl<'rhs> Mul<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl<'rhs, 'lhs> Mul<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl<'lhs> Mul<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl MulAssign<u4lo> for u4lo
[src]

[src]

Performs the *= operation.

impl<'rhs> MulAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the *= operation.

impl<'rhs> Div<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl<'rhs, 'lhs> Div<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl<'lhs> Div<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl DivAssign<u4lo> for u4lo
[src]

[src]

Performs the /= operation.

impl<'rhs> DivAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the /= operation.

impl<'rhs> Rem<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the % operator.

[src]

Performs the % operation.

impl<'rhs, 'lhs> Rem<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the % operator.

[src]

Performs the % operation.

impl<'lhs> Rem<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the % operator.

[src]

Performs the % operation.

impl RemAssign<u4lo> for u4lo
[src]

[src]

Performs the %= operation.

impl<'rhs> RemAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the %= operation.

impl<'rhs> BitAnd<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl<'rhs, 'lhs> BitAnd<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl<'lhs> BitAnd<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl BitAndAssign<u4lo> for u4lo
[src]

[src]

Performs the &= operation.

impl<'rhs> BitAndAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the &= operation.

impl<'rhs> BitOr<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl<'rhs, 'lhs> BitOr<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl<'lhs> BitOr<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl BitOrAssign<u4lo> for u4lo
[src]

[src]

Performs the |= operation.

impl<'rhs> BitOrAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the |= operation.

impl<'rhs> BitXor<&'rhs u4lo> for u4lo
[src]

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl<'rhs, 'lhs> BitXor<&'rhs u4lo> for &'lhs u4lo
[src]

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl<'lhs> BitXor<u4lo> for &'lhs u4lo
[src]

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl BitXorAssign<u4lo> for u4lo
[src]

[src]

Performs the ^= operation.

impl<'rhs> BitXorAssign<&'rhs u4lo> for u4lo
[src]

[src]

Performs the ^= operation.

impl<'rhs> Shl<&'rhs u8> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'rhs, 'lhs> Shl<&'rhs u8> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'lhs> Shl<u8> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl ShlAssign<u8> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> ShlAssign<&'rhs u8> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> Shr<&'rhs u8> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'rhs, 'lhs> Shr<&'rhs u8> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'lhs> Shr<u8> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl ShrAssign<u8> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> ShrAssign<&'rhs u8> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> Shl<&'rhs u16> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'rhs, 'lhs> Shl<&'rhs u16> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'lhs> Shl<u16> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl ShlAssign<u16> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> ShlAssign<&'rhs u16> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> Shr<&'rhs u16> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'rhs, 'lhs> Shr<&'rhs u16> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'lhs> Shr<u16> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl ShrAssign<u16> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> ShrAssign<&'rhs u16> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> Shl<&'rhs u32> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'rhs, 'lhs> Shl<&'rhs u32> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'lhs> Shl<u32> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl ShlAssign<u32> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> ShlAssign<&'rhs u32> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> Shr<&'rhs u32> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'rhs, 'lhs> Shr<&'rhs u32> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'lhs> Shr<u32> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl ShrAssign<u32> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> ShrAssign<&'rhs u32> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> Shl<&'rhs u64> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'rhs, 'lhs> Shl<&'rhs u64> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'lhs> Shl<u64> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl ShlAssign<u64> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> ShlAssign<&'rhs u64> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> Shr<&'rhs u64> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'rhs, 'lhs> Shr<&'rhs u64> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'lhs> Shr<u64> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl ShrAssign<u64> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> ShrAssign<&'rhs u64> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> Shl<&'rhs usize> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'rhs, 'lhs> Shl<&'rhs usize> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl<'lhs> Shl<usize> for &'lhs u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl ShlAssign<usize> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> ShlAssign<&'rhs usize> for u4lo
[src]

[src]

Performs the <<= operation.

impl<'rhs> Shr<&'rhs usize> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'rhs, 'lhs> Shr<&'rhs usize> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl<'lhs> Shr<usize> for &'lhs u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl ShrAssign<usize> for u4lo
[src]

[src]

Performs the >>= operation.

impl<'rhs> ShrAssign<&'rhs usize> for u4lo
[src]

[src]

Performs the >>= operation.

impl Add<u4lo> for u4lo
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub<u4lo> for u4lo
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl Mul<u4lo> for u4lo
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

impl Div<u4lo> for u4lo
[src]

The resulting type after applying the / operator.

[src]

Performs the / operation.

impl Rem<u4lo> for u4lo
[src]

The resulting type after applying the % operator.

[src]

Performs the % operation.

impl BitAnd<u4lo> for u4lo
[src]

The resulting type after applying the & operator.

[src]

Performs the & operation.

impl BitOr<u4lo> for u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl BitXor<u4lo> for u4lo
[src]

The resulting type after applying the ^ operator.

[src]

Performs the ^ operation.

impl Shl<u8> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<u8> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl Shl<u16> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<u16> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl Shl<u32> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<u32> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl Shl<u64> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<u64> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl Shl<usize> for u4lo
[src]

The resulting type after applying the << operator.

[src]

Performs the << operation.

impl Shr<usize> for u4lo
[src]

The resulting type after applying the >> operator.

[src]

Performs the >> operation.

impl Not for u4lo
[src]

The resulting type after applying the ! operator.

[src]

Performs the unary ! operation.

impl<'a> Not for &'a u4lo
[src]

The resulting type after applying the ! operator.

[src]

Performs the unary ! operation.

impl BitOr<u4hi> for u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl<'rhs> BitOr<&'rhs u4hi> for u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl<'lhs> BitOr<u4hi> for &'lhs u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl<'rhs, 'lhs> BitOr<&'rhs u4hi> for &'lhs u4lo
[src]

The resulting type after applying the | operator.

[src]

Performs the | operation.

impl Copy for u4lo
[src]

impl Clone for u4lo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl u4 for u4lo
[src]

[src]

Constructs a nibble from the high-order bits the a given byte.

[src]

Constructs a nibble from the low-order bits the a given byte.

[src]

Constructs a nibble from a byte with the same data in the high- and low-order bits.

[src]

Converts this nibble into a byte with its high-order bits set and low-order bits zero.

[src]

Converts this nibble into a byte with its low-order bits set and high-order bits zero.

[src]

Tries to constructs a nibble from the high-order bits the a given byte. Read more

[src]

Tries to constructs a nibble from the low-order bits the a given byte. Read more

[src]

Converts this nibble into a byte with the same data in the high- and low-order bits.

[src]

Converts this nibble into a high-order version.

[src]

Converts this nibble into a low-order version.

[src]

Converts an ASCII hex digit into a nibble.

[src]

Converts a nibble into a lowercase ASCII hex digit.

[src]

Converts a nibble into an uppercase ASCII hex digit.

[src]

Converts a hex digit into a nibble.

[src]

Converts a nibble into a lowercase hex digit.

[src]

Converts a nibble into an uppercase hex digit.

[src]

Converts a nibble into a lowercase hex string.

[src]

Converts a nibble into an uppercase hex string.

[src]

Converts an ASCII binary string into a nibble.

[src]

Converts an ASCII binary string into a nibble.

[src]

Converts a nibble into a 4-digit binary string.

[src]

Converts a nibble into a binary string.

[src]

Converts a nibble into an octal string.

[src]

Converts a nibble into a decimal string.

[src]

Converts an ASCII string of the given radix into a nibble. Read more

[src]

Converts a string of the given radix into a nibble. Read more

impl From<u4hi> for u4lo
[src]

[src]

Performs the conversion.

impl From<u4x2> for u4lo
[src]

[src]

Performs the conversion.