[][src]Enum septem::Digit

pub enum Digit {
    I,
    V,
    X,
    L,
    C,
    D,
    M,
}

Representation of a roman digit

Variants

I
V
X
L
C
D
M

Implementations

impl Digit[src]

pub fn from_int<T: Into<u32>>(num: T) -> Result<Digit>[src]

Tries to converts a value that implements Into<u32> into a single roman digit

Examples


let v: Digit = Digit::from_int(5u8).unwrap();
assert_eq!(Digit::V, v);

Returns Digit , or an septem::Error

impl Digit[src]

pub fn from_char(c: char) -> Result<Digit>[src]

Tries to converts a char into a single roman digit

Examples


let v: Digit = Digit::from_char('v').unwrap();
assert_eq!(Digit::V, v);

Returns Digit , or an septem::Error

pub fn from_byte(b: u8) -> Result<Digit>[src]

Tries to converts a byte into a single roman digit

Examples


let v: Digit = Digit::from_byte(b'v').unwrap();
assert_eq!(Digit::V, v);

Returns Digit , or an septem::Error

pub fn to_lowercase(self) -> char[src]

pub fn to_uppercase(self) -> char[src]

Methods from Deref<Target = u32>

pub const MIN: u321.43.0[src]

pub const MAX: u321.43.0[src]

pub const BITS: u32[src]

pub fn as_ne_bytes(&self) -> &[u8; 4][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 = 0x12345678u32;
let bytes = num.as_ne_bytes();
assert_eq!(
    bytes,
    if cfg!(target_endian = "big") {
        &[0x12, 0x34, 0x56, 0x78]
    } else {
        &[0x78, 0x56, 0x34, 0x12]
    }
);

Trait Implementations

impl Clone for Digit[src]

impl Copy for Digit[src]

impl Debug for Digit[src]

impl Deref for Digit[src]

type Target = u32

The resulting type after dereferencing.

fn deref(&self) -> &u32[src]

Returns from &Digit to u32

impl Display for Digit[src]

impl Eq for Digit[src]

impl From<Digit> for u32[src]

fn from(digit: Digit) -> u32[src]

Converts from Digit to u32

impl PartialEq<Digit> for Digit[src]

impl Send for Digit[src]

impl StructuralEq for Digit[src]

impl StructuralPartialEq for Digit[src]

impl Sync for Digit[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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.