pub enum RunVar {
}Variants§
I8(i8)
I16(i16)
I32(i32)
I64(i64)
I128(i128)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
U128(u128)
F32(f32)
F64(f64)
USIZE(usize)
ISIZE(isize)
STRING(String)
Trait Implementations§
Source§impl PartialOrd for RunVar
impl PartialOrd for RunVar
Source§impl TryInto<String> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<String> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<f32> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<f32> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<f64> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<f64> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<i128> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<i128> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<i16> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<i16> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<i32> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<i32> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<i64> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<i64> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<i8> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<i8> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<isize> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<isize> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<u128> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<u128> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<u16> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<u16> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<u32> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<u32> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<u64> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<u64> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<u8> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<u8> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);Source§impl TryInto<usize> for RunVar
the only time that this will fail is when doing something like the following:
impl TryInto<usize> for RunVar
the only time that this will fail is when doing something like the following:
use runmod::RunVar;
let val = RunVar::I32(10);
assert_eq!(TryInto::<i64>::try_into(val).is_err(), true);