[−][src]Struct heapless::pool::singleton::Box
A memory block that belongs to the global memory pool, POOL
Methods
impl<P> Box<P, Uninit> where
P: Pool,
[src]
P: Pool,
impl<P> Box<P, Uninit> where
P: Pool,
P::Data: AsSlice<Element = u8>,
[src]
P: Pool,
P::Data: AsSlice<Element = u8>,
pub fn freeze(self) -> Box<P, Init>
[src]
Freezes the contents of this memory block
See rust-lang/rust#58363 for details.
Trait Implementations
impl<P> PartialEq<Box<P, Init>> for Box<P> where
P: Pool,
P::Data: PartialEq,
[src]
P: Pool,
P::Data: PartialEq,
fn eq(&self, rhs: &Box<P>) -> bool
[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<P> Eq for Box<P> where
P: Pool,
P::Data: Eq,
[src]
P: Pool,
P::Data: Eq,
impl<P> Ord for Box<P> where
P: Pool,
P::Data: Ord,
[src]
P: Pool,
P::Data: Ord,
fn cmp(&self, rhs: &Box<P>) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.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<P> PartialOrd<Box<P, Init>> for Box<P> where
P: Pool,
P::Data: PartialOrd,
[src]
P: Pool,
P::Data: PartialOrd,
fn partial_cmp(&self, rhs: &Box<P>) -> Option<Ordering>
[src]
#[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> Debug for Box<P> where
P: Pool,
P::Data: Debug,
[src]
P: Pool,
P::Data: Debug,
impl<P> Display for Box<P> where
P: Pool,
P::Data: Display,
[src]
P: Pool,
P::Data: Display,
impl<P> Deref for Box<P> where
P: Pool,
[src]
P: Pool,
impl<P> DerefMut for Box<P> where
P: Pool,
[src]
P: Pool,
impl<P, S> Drop for Box<P, S> where
P: Pool,
S: 'static,
[src]
P: Pool,
S: 'static,
impl<P> Hash for Box<P> where
P: Pool,
P::Data: Hash,
[src]
P: Pool,
P::Data: 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<P, S> Send for Box<P, S> where
P: Pool,
P::Data: Send,
[src]
P: Pool,
P::Data: Send,
impl<P, S> Sync for Box<P, S> where
P: Pool,
P::Data: Sync,
[src]
P: Pool,
P::Data: Sync,
impl<P, T> AsSlice for Box<P> where
P: Pool,
P::Data: AsSlice<Element = T>,
[src]
P: Pool,
P::Data: AsSlice<Element = T>,
impl<P, T> AsMutSlice for Box<P> where
P: Pool,
P::Data: AsMutSlice<Element = T>,
[src]
P: Pool,
P::Data: AsMutSlice<Element = T>,
fn as_mut_slice(&mut self) -> &mut [T]
[src]
Blanket Implementations
impl<T> From<T> for T
[src]
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, 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