embassy-stm32

Crates

git

Versions

stm32l4s5ai

Flavors

๐Ÿ“ฃ We want to hear from you! Fill the Rust Embedded 2024 micro-survey.

Struct embassy_stm32::PeripheralRef

ยท
pub struct PeripheralRef<'a, T> { /* private fields */ }
Expand description

An exclusive reference to a peripheral.

This is functionally the same as a &'a mut T. Thereโ€™s a few advantages in having a dedicated struct instead:

  • Memory efficiency: Peripheral singletons are typically either zero-sized (for concrete peripherals like PA9 or SPI4) or very small (for example AnyPin, which is 1 byte). However &mut T is always 4 bytes for 32-bit targets, even if T is zero-sized. PeripheralRef stores a copy of T instead, so itโ€™s the same size.
  • Code size efficiency. If the user uses the same driver with both SPI4 and &mut SPI4, the driver code would be monomorphized two times. With PeripheralRef, the driver is generic over a lifetime only. SPI4 becomes PeripheralRef<'static, SPI4>, and &mut SPI4 becomes PeripheralRef<'a, SPI4>. Lifetimes donโ€™t cause monomorphization.

Implementationsยง

sourceยง

impl<'a, T> PeripheralRef<'a, T>

source

pub fn new(inner: T) -> PeripheralRef<'a, T>

Create a new reference to a peripheral.

source

pub unsafe fn clone_unchecked(&self) -> PeripheralRef<'a, T>
where T: Peripheral<P = T>,

Unsafely clone (duplicate) a peripheral singleton.

ยงSafety

This returns an owned clone of the peripheral. You must manually ensure only one copy of the peripheral is in use at a time. For example, donโ€™t create two SPI drivers on SPI1, because they will โ€œfightโ€ each other.

You should strongly prefer using reborrow() instead. It returns a PeripheralRef that borrows self, which allows the borrow checker to enforce this at compile time.

source

pub fn reborrow(&mut self) -> PeripheralRef<'_, T>
where T: Peripheral<P = T>,

Reborrow into a โ€œchildโ€ PeripheralRef.

self will stay borrowed until the child PeripheralRef is dropped.

source

pub fn map_into<U>(self) -> PeripheralRef<'a, U>
where T: Into<U>,

Map the inner peripheral using Into.

This converts from PeripheralRef<'a, T> to PeripheralRef<'a, U>, using an Into impl to convert from T to U.

For example, this can be useful to degrade GPIO pins: converting from PeripheralRef<โ€™a, PB11>toPeripheralRef<โ€™a, AnyPin>`.

Trait Implementationsยง

sourceยง

impl<'a, T> Deref for PeripheralRef<'a, T>

sourceยง

type Target = T

The resulting type after dereferencing.
sourceยง

fn deref(&self) -> &<PeripheralRef<'a, T> as Deref>::Target

Dereferences the value.
sourceยง

impl<'b, T> Peripheral for PeripheralRef<'_, T>
where T: Peripheral,

sourceยง

type P = <T as Peripheral>::P

Peripheral singleton type
sourceยง

unsafe fn clone_unchecked(&self) -> <PeripheralRef<'_, T> as Peripheral>::P

Unsafely clone (duplicate) a peripheral singleton. Read more
sourceยง

fn into_ref<'a>(self) -> PeripheralRef<'a, Self::P>
where Self: 'a,

Convert a value into a PeripheralRef. Read more

Auto Trait Implementationsยง

ยง

impl<'a, T> Freeze for PeripheralRef<'a, T>
where T: Freeze,

ยง

impl<'a, T> RefUnwindSafe for PeripheralRef<'a, T>
where T: RefUnwindSafe,

ยง

impl<'a, T> Send for PeripheralRef<'a, T>
where T: Send,

ยง

impl<'a, T> Sync for PeripheralRef<'a, T>
where T: Sync,

ยง

impl<'a, T> Unpin for PeripheralRef<'a, T>
where T: Unpin,

ยง

impl<'a, T> !UnwindSafe for PeripheralRef<'a, T>

Blanket Implementationsยง

sourceยง

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

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

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

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

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

sourceยง

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

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

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

sourceยง

fn into(self) -> U

Calls U::from(self).

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

sourceยง

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

sourceยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

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

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

sourceยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

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

Performs the conversion.