[−][src]Enum r::static_config::ParamType
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)
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.
fn try_into(self) -> Result<&'static str, Self::Error>
[src]
impl TryInto<bool> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<bool, Self::Error>
[src]
impl TryInto<f64> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<f64, Self::Error>
[src]
impl TryInto<i128> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<i128, Self::Error>
[src]
impl TryInto<i16> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<i16, Self::Error>
[src]
impl TryInto<i32> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<i32, Self::Error>
[src]
impl TryInto<i64> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<i64, Self::Error>
[src]
impl TryInto<i8> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<i8, Self::Error>
[src]
impl TryInto<isize> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<isize, Self::Error>
[src]
impl TryInto<u128> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<u128, Self::Error>
[src]
impl TryInto<u16> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<u16, Self::Error>
[src]
impl TryInto<u32> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<u32, Self::Error>
[src]
impl TryInto<u64> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<u64, Self::Error>
[src]
impl TryInto<u8> for ParamType
[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_into(self) -> Result<u8, Self::Error>
[src]
impl TryInto<usize> for ParamType
[src]
Auto Trait Implementations
impl RefUnwindSafe for ParamType
impl Send for ParamType
impl Sync for ParamType
impl Unpin for ParamType
impl UnwindSafe for ParamType
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,