Skip to main content

Value

Trait Value 

Source
pub trait Value:
    Clone
    + Send
    + 'static { }
Expand description

Trait bound for types usable as values in KeyStream. Must be cloneable, thread-safe, and 'static.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: Clone + Send + 'static> Value for T