[][src]Trait fallible_collections::arc::FallibleArc

pub trait FallibleArc<T> {
    pub fn try_new(t: T) -> Result<Self, TryReserveError>
    where
        Self: Sized
; }

trait to implement Fallible Arc

Required methods

pub fn try_new(t: T) -> Result<Self, TryReserveError> where
    Self: Sized
[src]

try creating a new Arc, returning a Result<Box, TryReserveError> if allocation failed

Loading content...

Implementations on Foreign Types

impl<T> FallibleArc<T> for Arc<T>[src]

Loading content...

Implementors

Loading content...