Trait ParamValue

Source
pub trait ParamValue: ToString + FromStr {
    type Borrowed<'a>;
}
Expand description

The trait for the value type of a system parameter.

Required Associated Types§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ParamValue for bool

Source§

impl ParamValue for f64

Source§

impl ParamValue for u32

Source§

impl ParamValue for u64

Source§

impl ParamValue for LicenseKey

Source§

impl ParamValue for String

Source§

type Borrowed<'a> = &'a str

Implementors§