[][src]Struct basin2_lib::ilib::Atomic

pub struct Atomic<T: Send + Sync + Clone + Copy + 'static> { /* fields omitted */ }

Methods

impl<T: Send + Sync + Clone + Copy + 'static> Atomic<T>[src]

pub fn new() -> Atomic<T>[src]

pub fn set(&self, item: T)[src]

pub fn get(&self) -> T[src]

pub fn is_set(&self) -> bool[src]

Trait Implementations

impl<T: Send + Sync + Clone + Copy + 'static> Clone for Atomic<T>[src]

impl<T: Debug + Send + Sync + Clone + Copy + 'static> Debug for Atomic<T>[src]

impl<T: Send + Sync + Clone + Copy + 'static> Default for Atomic<T>[src]

impl<T: Send + Sync + Clone + Copy + 'static> Drop for Atomic<T>[src]

impl<T: Send + Sync + Clone + Copy + 'static> From<T> for Atomic<T>[src]

impl<T: PartialEq + Send + Sync + Clone + Copy + 'static> PartialEq<Atomic<T>> for Atomic<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Atomic<T>

impl<T> Send for Atomic<T>

impl<T> Sync for Atomic<T>

impl<T> Unpin for Atomic<T>

impl<T> UnwindSafe for Atomic<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.