pub struct Context<T> {
    pub subsystem: T,
    pub storage: Arc<RwLock<HashMap<String, String>>>,
}
Expand description

Context struct used by a service to provide Juniper context, subsystem access and persistent storage.

Fields

subsystem: T
storage: Arc<RwLock<HashMap<String, String>>>

Implementations

Returns a reference to the context’s subsystem instance

Attempts to get a value from the context’s storage

Arguments

name - Key to search for in storage

Sets a value in the context’s storage

Arguments

key - Key to store value under value - Value to store

Clears a single key/value from storage

Arguments

key - Key to clear (along with corresponding value)

Clears all key/value pairs from storage

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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.

Perform the conversion

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 resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

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.