[][src]Struct rustc_ap_rustc_data_structures::AtomicRef

pub struct AtomicRef<T: 'static>(_, _);

This is essentially an AtomicPtr but is guaranteed to always be valid

Implementations

impl<T: 'static> AtomicRef<T>[src]

pub const fn new(initial: &'static T) -> AtomicRef<T>[src]

pub fn swap(&self, new: &'static T) -> &'static T

Notable traits for &'_ mut I

impl<'_, I> Iterator for &'_ mut I where
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;
[src]

Trait Implementations

impl<T: 'static> Deref for AtomicRef<T>[src]

type Target = T

The resulting type after dereferencing.

Auto Trait Implementations

impl<T> RefUnwindSafe for AtomicRef<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for AtomicRef<T> where
    T: Sync
[src]

impl<T> Sync for AtomicRef<T> where
    T: Sync
[src]

impl<T> Unpin for AtomicRef<T>[src]

impl<T> UnwindSafe for AtomicRef<T> where
    T: RefUnwindSafe
[src]

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<'a, T> Captures<'a> for T where
    T: ?Sized
[src]

impl<T> Erased for T[src]

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

impl<T> Instrument for T[src]

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,