pub struct Dictionary { /* private fields */ }
Expand description

A Compute@Edge Dictionary.

Implementations

Open a dictionary, given its name.

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

Try to open a dictionary, given its name.

Examples
let merriam = Dictionary::try_open("merriam webster").unwrap();

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.

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());

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

Performs the conversion.

Performs the conversion.

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.