1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//! FastEdge dictionary storage (ProxyWasm API).
//!
//! This module provides dictionary access through the ProxyWasm FFI interface.
//! Dictionaries provide fast, read-only key-value lookups for configuration data.
//!
//! # Examples
//!
//! ```no_run
//! use fastedge::proxywasm::dictionary;
//!
//! // Get a configuration value
//! if let Some(endpoint) = dictionary::get("api_endpoint") {
//! println!("API endpoint: {}", endpoint);
//! }
//! ```
use null_mut;
/// Retrieves a string value from the dictionary by key.
///
/// # Arguments
///
/// * `key` - The key to look up in the dictionary
///
/// # Returns
///
/// Returns `Some(value)` if the key exists and the value is valid UTF-8,
/// or `None` if the key doesn't exist or the value is not valid UTF-8.
///
/// # Panics
///
/// Panics if an unexpected status code is returned from the host.
///
/// # Examples
///
/// ```no_run
/// use fastedge::proxywasm::dictionary;
///
/// if let Some(timeout) = dictionary::get("timeout_ms") {
/// println!("Timeout: {} ms", timeout);
/// }
/// ```