[][src]Struct parc::ChildArc

pub struct ChildArc<T> { /* fields omitted */ }

Unclonable owned reference to a ParentArc.

This type can be dereferenced into the underlying data.

Examples

use parc::{ParentArc, LockWeak, ChildArc};
use std::sync::Mutex;
fn main() {
    let parent = ParentArc::new(Mutex::new(true));

    let weak: LockWeak<_> = ParentArc::downgrade(&parent);
    let child: ChildArc<_> = weak.upgrade().unwrap();

    assert!(*child.lock().unwrap());
}

Trait Implementations

impl<T> Deref for ChildArc<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> Drop for ChildArc<T>[src]

impl<T> AsRef<T> for ChildArc<T>[src]

Auto Trait Implementations

impl<T> Unpin for ChildArc<T>

impl<T> !Send for ChildArc<T>

impl<T> !Sync for ChildArc<T>

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

impl<T> RefUnwindSafe for ChildArc<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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