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

A Compute@Edge Config Store.

Implementations

Open a config store, given its name.

Examples
let merriam = ConfigStore::open("merriam webster");
let oed = ConfigStore::open("oxford english config store");

Try to open a config store, given its name.

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

Lookup a value in this config store.

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!(
     config_store.get("bread"),
     Some(String::from("a usually baked and leavened food")),
);
assert_eq!(
    config_store.get("freedom"),
    Some(String::from("the absence of necessity, coercion, or constraint")),
);

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

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

Try to lookup a value in this Config Store.

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!(
     config_store.try_get("bread").unwrap(),
     Some(String::from("a usually baked and leavened food")),
);
assert_eq!(
    config_store.try_get("freedom").unwrap(),
    Some(String::from("the absence of necessity, coercion, or constraint")),
);

// Otherwise, `try_get` will return nothing.
assert!(config_store.try_get("zzzzz").unwrap().is_none());

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

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

This may panic for any of the reasons that ConfigStore::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.