Struct atomic_pool::Box[][src]

pub struct Box<P: Pool> { /* fields omitted */ }

Implementations

impl<P: Pool> Box<P>[src]

pub fn new(item: P::Item) -> Option<Self>[src]

pub fn into_raw(b: Self) -> NonNull<P::Item>[src]

pub unsafe fn from_raw(ptr: NonNull<P::Item>) -> Self[src]

Trait Implementations

impl<P: Pool> AsMutSlice for Box<P> where
    P::Item: AsMutSlice
[src]

fn as_mut_slice(&mut self) -> &mut [Self::Element][src]

Returns the mutable slice view of Self

impl<P: Pool> AsSlice for Box<P> where
    P::Item: AsSlice
[src]

type Element = <P::Item as AsSlice>::Element

The element type of the slice view

fn as_slice(&self) -> &[Self::Element][src]

Returns the immutable slice view of Self

impl<P: Pool> Debug for Box<P> where
    P::Item: Debug
[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<P: Pool> Deref for Box<P>[src]

type Target = P::Item

The resulting type after dereferencing.

fn deref(&self) -> &P::Item[src]

Dereferences the value.

impl<P: Pool> DerefMut for Box<P>[src]

fn deref_mut(&mut self) -> &mut P::Item[src]

Mutably dereferences the value.

impl<P: Pool> Display for Box<P> where
    P::Item: Display
[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<P: Pool> Drop for Box<P>[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

impl<P: Pool> Hash for Box<P> where
    P::Item: Hash
[src]

fn hash<H>(&self, state: &mut H) where
    H: Hasher
[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl<P: Pool> Ord for Box<P> where
    P::Item: Ord
[src]

fn cmp(&self, rhs: &Box<P>) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl<P: Pool> PartialEq<Box<P>> for Box<P> where
    P::Item: PartialEq
[src]

fn eq(&self, rhs: &Box<P>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<P: Pool> PartialOrd<Box<P>> for Box<P> where
    P::Item: PartialOrd
[src]

fn partial_cmp(&self, rhs: &Box<P>) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<P: Pool> Eq for Box<P> where
    P::Item: Eq
[src]

impl<P: Pool> Send for Box<P> where
    P::Item: Send
[src]

impl<P: Pool> StableDeref for Box<P>[src]

impl<P: Pool> Sync for Box<P> where
    P::Item: Sync
[src]

Auto Trait Implementations

impl<P> Unpin for Box<P>

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

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

Immutably borrows from an owned value. Read more

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

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

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.