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

Context is a collection of attributes that can be referenced in flag evaluations and analytics events. These attributes are described by one or more Kinds.

For example, a context might represent the user of a service, the description of an organization, IoT device metadata, or any combination of those at once.

To create a context of a single kind, such as a user, you may use crate::ContextBuilder.

To create a context with multiple kinds, use crate::MultiContextBuilder.

Implementations§

source§

impl Context

source

pub fn is_multi(&self) -> bool

Returns true if the context is a multi-context.

source

pub fn get_value(&self, reference: &Reference) -> Option<AttributeValue>

Looks up the value of any attribute of the context, or a value contained within an attribute, based on the given reference.

This lookup includes only attributes that are addressable in evaluations– not metadata such as private attributes.

This method implements the same behavior that the SDK uses to resolve attribute references during a flag evaluation. In a single context, the reference can represent a simple attribute name– either a built-in one like “name” or “key”, or a custom attribute that was set by methods like crate::ContextBuilder::set_string– or, it can be a slash-delimited path.

For a multi-context, the only supported attribute name is “kind”. Use Context::as_kind to inspect a context for a particular Kind and then get its attributes.

source

pub fn key(&self) -> &str

Returns the “key” attribute.

For a single context, this value is set by the crate::ContextBuilder::new or crate::ContextBuilder::key methods.

For a multi-context, there is no single key, so Context::key returns an empty string; use Context::as_kind to inspect a context for a particular kind and call Context::key on it.

source

pub fn canonical_key(&self) -> &str

Returns the canonical key.

  1. For a single context of kind “user”, the canonical key is equivalent to the key.
  2. For other kinds of single contexts, the canonical key is “kind:key”.
  3. For a multi-context, the canonical key is the concatenation of its constituent contexts’ canonical keys with : according to (2) (including kind “user”).
source

pub fn kind(&self) -> &Kind

Returns the “kind” attribute.

source

pub fn as_kind(&self, kind: &Kind) -> Option<&Context>

If the specified kind exists within the context, returns a reference to it. Otherwise, returns None.

source

pub fn context_keys(&self) -> HashMap<&Kind, &str>

Returns a map of all (kind, key) pairs contained in this context.

source

pub fn kinds(&self) -> Vec<&Kind>

Returns a list of all kinds represented by this context.

Trait Implementations§

source§

impl Clone for Context

source§

fn clone(&self) -> Context

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Context

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Context

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for Context

source§

fn eq(&self, other: &Context) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Context

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for Context

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,