Module namable_closures::closures[][src]

Structs

Closure

A Closure owns its state, and only refers to the state when called.

ClosureMut

A namable closure that does not own its state and can mutate it when called.

ClosureOnce

When called, it consumes its state. So it can only be called once.

ClosureRef

A Closure does not own its state, and only refers to the state when called.

ClosureRefMut

A namable closure that owns its state and can mutate it when called.