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.

Trait Implementations

impl Atomicity for Atomic
[src]

fn new() -> Self

fn increment(&self) -> usize

fn decrement(&self) -> usize

fn fence_acquire()