Struct execution_context::FlowBox[][src]

pub struct FlowBox<T: ?Sized>(_);

Am immutable wrapper around a value from a flow local.

This is returned when a flow local is accessed and is internally reference counted. Cloning this value is reasonably efficient.

Trait Implementations

impl<T: Clone + ?Sized> Clone for FlowBox<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Display + ?Sized> Display for FlowBox<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Debug + ?Sized> Debug for FlowBox<T>
[src]

Formats the value using the given formatter. Read more

impl<T: ?Sized> Pointer for FlowBox<T>
[src]

Formats the value using the given formatter.

impl<T: ?Sized> Deref for FlowBox<T>
[src]

The resulting type after dereferencing.

Important traits for &'a mut R

Dereferences the value.

Auto Trait Implementations

impl<T: ?Sized> Send for FlowBox<T> where
    T: Send + Sync

impl<T: ?Sized> Sync for FlowBox<T> where
    T: Send + Sync