[][src]Enum r::static_config::ParamType

pub enum ParamType {
    BOOL(bool),
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    I128(i128),
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    U128(u128),
    STRING(&'static str),
    FLOAT(f64),
    INVALID,
}

Variants

BOOL(bool)
I8(i8)
I16(i16)
I32(i32)
I64(i64)
I128(i128)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
U128(u128)
STRING(&'static str)
FLOAT(f64)
INVALID

Trait Implementations

impl Debug for ParamType[src]

impl TryInto<&'static str> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<bool> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<f64> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<i128> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<i16> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<i32> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<i64> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<i8> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<isize> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<u128> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<u16> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<u32> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<u64> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<u8> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

impl TryInto<usize> for ParamType[src]

type Error = &'static str

The type returned in the event of a conversion error.

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, 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.