[][src]Struct elysees::ArcInner

#[repr(C)]pub struct ArcInner<T: ?Sized> { /* fields omitted */ }

The object allocated by an Arc

Implementations

impl<T: ?Sized> ArcInner<T>[src]

pub fn data_offset(data: &T) -> (Layout, usize)[src]

Get the theoretical offset of a piece of data in an ArcInner, as well as the layout of that ArcInner

Trait Implementations

impl<T: ?Sized + Sync + Send> Send for ArcInner<T>[src]

impl<T: ?Sized + Sync + Send> Sync for ArcInner<T>[src]

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for ArcInner<T> where
    T: RefUnwindSafe

impl<T: ?Sized> Unpin for ArcInner<T> where
    T: Unpin

impl<T: ?Sized> UnwindSafe for ArcInner<T> where
    T: UnwindSafe

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> Erasable for T[src]

impl<T> From<T> 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.