[][src]Trait rain_lang::graph::node::HasThis

pub trait HasThis<T = Self> {
    fn this(&self) -> Cow<WeakNode<T>>;
}

A trait implemented by values which have a weak node address associated with them

Required methods

fn this(&self) -> Cow<WeakNode<T>>

Get a Cow of the weak node address associated with this value. May be null if there is none.

Loading content...

Implementors

impl<T> HasThis<T> for Node<T>[src]

impl<T> HasThis<T> for WeakNode<T>[src]

Loading content...