Skip to main content

ParamValue

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

Implementations on Foreign Types§

Source§

impl ParamValue for LicenseKey

Source§

impl ParamValue for String

Source§

type Borrowed<'a> = &'a str

Source§

impl ParamValue for bool

Source§

impl ParamValue for f64

Source§

impl ParamValue for u32

Source§

impl ParamValue for u64

Implementors§