ClosureOncePrivate

Type Alias ClosureOncePrivate 

Source
type ClosureOncePrivate = Option<Box<ClosureOnce>>;

Aliased Type§

enum ClosureOncePrivate {
    None,
    Some(Box<dyn for<'cx> FnOnce(&mut Arguments<'cx>) -> Result<Value<'cx>, Exception>>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Box<dyn for<'cx> FnOnce(&mut Arguments<'cx>) -> Result<Value<'cx>, Exception>>)

Some value of type T.

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.