[−][src]Struct heapless::pool::Box
A memory block
Methods
impl<T> Box<T, Uninit>[src]
Trait Implementations
impl<T> PartialEq<Box<T, Init>> for Box<T> where
T: PartialEq, [src]
T: PartialEq,
fn eq(&self, rhs: &Box<T>) -> bool[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl<T> Eq for Box<T> where
T: Eq, [src]
T: Eq,
impl<T> Ord for Box<T> where
T: Ord, [src]
T: Ord,
fn cmp(&self, rhs: &Box<T>) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self[src]
clamp)Restrict a value to a certain interval. Read more
impl<T> PartialOrd<Box<T, Init>> for Box<T> where
T: PartialOrd, [src]
T: PartialOrd,
fn partial_cmp(&self, rhs: &Box<T>) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.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) -> bool1.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) -> bool1.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) -> bool1.0.0[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<T> Hash for Box<T> where
T: Hash, [src]
T: Hash,
fn hash<H>(&self, state: &mut H) where
H: Hasher, [src]
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl<T> Deref for Box<T>[src]
impl<T> DerefMut for Box<T>[src]
impl<T> Debug for Box<T> where
T: Debug, [src]
T: Debug,
impl<T> Display for Box<T> where
T: Display, [src]
T: Display,
impl<T, S> Send for Box<T, S> where
T: Send, [src]
T: Send,
impl<T, S> Sync for Box<T, S> where
T: Sync, [src]
T: Sync,
impl<A> AsSlice for Box<A> where
A: AsSlice, [src]
A: AsSlice,
type Element = A::Element
The element type of the slice view
fn as_slice(&self) -> &[A::Element][src]
impl<A> AsMutSlice for Box<A> where
A: AsMutSlice, [src]
A: AsMutSlice,
fn as_mut_slice(&mut self) -> &mut [A::Element][src]
Blanket Implementations
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self