[][src]Struct flo_binding::binding_context::BindingContext

pub struct BindingContext { /* fields omitted */ }

Represents a binding context. Binding contexts are per-thread structures, used to track

Methods

impl BindingContext[src]

pub fn current() -> Option<BindingContext>[src]

Gets the active binding context

pub fn panic_if_in_binding_context(msg: &str)[src]

Panics if we're trying to create a binding, with a particular message

pub fn bind<TResult, TFn>(to_do: TFn) -> (TResult, BindingDependencies) where
    TFn: FnOnce() -> TResult, 
[src]

Executes a function in a new binding context

pub fn out_of_context<TResult, TFn>(to_do: TFn) -> TResult where
    TFn: FnOnce() -> TResult, 
[src]

Performs an action outside of the binding context (dependencies will not be tracked for anything the supplied function does)

pub fn add_dependency<TChangeable: Changeable + 'static>(
    dependency: TChangeable
)
[src]

Adds a dependency to the current context (if one is found)

Trait Implementations

impl Clone for BindingContext[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow for T where
    T: ?Sized
[src]

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

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

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.