pub fn request_value<T, 'a>(provider: &'a impl Provider) -> Option<T>where
    T: 'static,
🔬This is a nightly-only experimental API. (provide_any)
Available on non-crate feature miri-test-libstd only.
Expand description

Request a value from the Provider.

Examples

Get a string value from a provider.

use std::any::{Provider, request_value};

fn get_string(provider: &impl Provider) -> String {
    request_value::<String>(provider).unwrap()
}