Struct fastly::Dictionary[][src]

pub struct Dictionary { /* fields omitted */ }
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");

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

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

Examples

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

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.