pub struct Dictionary { /* private fields */ }
👎 Deprecated since 0.8.6:

renamed to config_store

Expand description

A Compute@Edge Dictionary.

Implementations

👎 Deprecated since 0.8.6:

renamed to config_store

Open a dictionary, given its name.

Examples
let merriam = Dictionary::open("merriam webster");
let oed = Dictionary::open("oxford english dictionary");
👎 Deprecated since 0.8.6:

renamed to config_store

Try to open a dictionary, given its name.

Examples
let merriam = Dictionary::try_open("merriam webster").unwrap();
👎 Deprecated since 0.8.6:

renamed to config_store

Lookup a value in this dictionary.

If successful, this function returns Some(_) if an entry was found, or None if no entry with the given key was found.

Examples
assert_eq!(
     dictionary.get("bread"),
     Some(String::from("a usually baked and leavened food")),
);
assert_eq!(
    dictionary.get("freedom"),
    Some(String::from("the absence of necessity, coercion, or constraint")),
);

// Otherwise, `get` will return nothing.
assert!(dictionary.get("zzzzz").is_none());
Panics

This may panic for any of the reasons that Dictionary::try_get would return an error.

👎 Deprecated since 0.8.6:

renamed to config_store

Try to lookup a value in this dictionary.

If successful, this function returns Ok(Some(_)) if an entry was found, or Ok(None) if no entry with the given key was found. This function returns Err(_) if the lookup failed.

Examples
assert_eq!(
     dictionary.try_get("bread").unwrap(),
     Some(String::from("a usually baked and leavened food")),
);
assert_eq!(
    dictionary.try_get("freedom").unwrap(),
    Some(String::from("the absence of necessity, coercion, or constraint")),
);

// Otherwise, `try_get` will return nothing.
assert!(dictionary.try_get("zzzzz").unwrap().is_none());
👎 Deprecated since 0.8.6:

renamed to config_store

Return true if the dictionary contains an entry with the given key.

Examples
assert!(dictionary.contains("key"));
Panics

This may panic for any of the reasons that Dictionary::try_get would return an error.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.