Struct tendril::Atomic
[−]
[src]
pub struct Atomic(_);
A marker of an atomic (and hence concurrent) tendril.
This is used as the second, optional type parameter of a Tendril
; Tendril<F, Atomic>
thus
implements both Send
and Sync
.
This is akin to using Arc
for reference counting.