[][src]Struct aces::InContextMut

pub struct InContextMut<'a, D: Contextual> { /* fields omitted */ }

A short-term binding of Context and any mutable object of a type that implements the Contextual trait.

Context can't be modified through InContextMut. The purpose of this type is to allow a transparent read access to shared data, like names etc.

Methods

impl<'_, D: Contextual> InContextMut<'_, D>[src]

pub fn get_context(&self) -> &Context[src]

pub fn get_dock(&self) -> Option<Face>[src]

pub fn get_thing(&self) -> &D[src]

pub fn get_thing_mut(&mut self) -> &mut D[src]

Trait Implementations

impl<'a, '_> AddAssign<&'_ InContextMut<'a, Polynomial<LinkID>>> for InContextMut<'a, Polynomial<LinkID>>[src]

impl<'a, D: Contextual> Display for InContextMut<'a, D>[src]

Auto Trait Implementations

impl<'a, D> Send for InContextMut<'a, D> where
    D: Send

impl<'a, D> Unpin for InContextMut<'a, D>

impl<'a, D> Sync for InContextMut<'a, D> where
    D: Sync

impl<'a, D> !UnwindSafe for InContextMut<'a, D>

impl<'a, D> RefUnwindSafe for InContextMut<'a, D> where
    D: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<Reference, Outer, OuterFieldType, Inner> HasPart<Nested<Outer, Inner>> for Reference where
    Inner: Part,
    Outer: Part<PartType = Field<OuterFieldType>>,
    OuterFieldType: HasPart<Inner, RawTarget = OuterFieldType> + PartialRefTarget + ?Sized,
    Reference: HasPart<Outer> + ?Sized