Function otter_nodejs_tests::inventory::core::any::request_value
source · [−]🔬 This is a nightly-only experimental API. (
provide_any)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<P: Provider>(provider: &P) -> String {
request_value::<String, _>(provider).unwrap()
}