pub trait Unbound: Trace {
    type Bound;

    fn bind(
        &self,
        sup: Option<ObjValue>,
        this: Option<ObjValue>
    ) -> Result<Self::Bound>; }
Expand description

Thunk without bound super/this object inheritance may be overriden multiple times, and will be fixed only on field read

Required Associated Types§

Type of value after object context is bound

Required Methods§

Create value bound to specified object context

Implementors§