esp_hal::system

Struct Stack

Source
#[repr(C, align(16))]
pub struct Stack<const SIZE: usize> { pub mem: MaybeUninit<[u8; SIZE]>, }
Available on crate feature unstable only.
Expand description

Data type for a properly aligned stack of N bytes

§Stability

This API is marked as unstable and is only available when the unstable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.

Fields§

§mem: MaybeUninit<[u8; SIZE]>

Memory to be used for the stack

Implementations§

Source§

impl<const SIZE: usize> Stack<SIZE>

Source

pub const fn new() -> Stack<SIZE>

Construct a stack of length SIZE, uninitialized

§Stability

This API is marked as unstable and is only available when the unstable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.

Source

pub const fn len(&self) -> usize

Returns the length of the stack in bytes.

§Stability

This API is marked as unstable and is only available when the unstable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.

Source

pub fn bottom(&mut self) -> *mut u32

Returns a mutable pointer to the bottom of the stack.

§Stability

This API is marked as unstable and is only available when the unstable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.

Source

pub fn top(&mut self) -> *mut u32

Returns a mutable pointer to the top of the stack.

§Stability

This API is marked as unstable and is only available when the unstable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.

Trait Implementations§

Source§

impl<const SIZE: usize> Default for Stack<SIZE>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<const SIZE: usize> Freeze for Stack<SIZE>

§

impl<const SIZE: usize> RefUnwindSafe for Stack<SIZE>

§

impl<const SIZE: usize> Send for Stack<SIZE>

§

impl<const SIZE: usize> Sync for Stack<SIZE>

§

impl<const SIZE: usize> Unpin for Stack<SIZE>

§

impl<const SIZE: usize> UnwindSafe for Stack<SIZE>

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where 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>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where 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>

Performs the conversion.