[][src]Struct eff::context::Context

pub struct Context { /* fields omitted */ }

The untyped context of an effectful computation

Methods

impl Context[src]

pub fn current() -> Self[src]

Create a context within the current thread

pub fn contains(&self) -> bool[src]

Returns true if the task-local storage contains any value

Returns false if it does not.

pub fn take<T>(&self) -> Option<T>[src]

Takes the value out of the task-local storage

pub fn set<T>(&self, v: T)[src]

Assign a value to the task-local storage

pub fn typed<E: Effect>(&self) -> TypedContext<E>[src]

Create a typed context which shares the same task-local storage

Trait Implementations

impl Send for Context[src]

impl Sync for Context[src]

impl Debug for Context[src]

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]