atsamd_hal::dmac::transfer

Trait Beat

Source
pub unsafe trait Beat: Sealed {
    const BEATSIZE: BeatSize;
}
Expand description

Convert 8, 16 and 32 bit types into BeatSize

§Safety

This trait should not be implemented outside of the crate-provided implementations

Required Associated Constants§

Source

const BEATSIZE: BeatSize

Convert to BeatSize enum

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Beat for f32

Source§

const BEATSIZE: BeatSize = BeatSize::Word

Source§

impl Beat for i8

Source§

const BEATSIZE: BeatSize = BeatSize::Byte

Source§

impl Beat for i16

Source§

const BEATSIZE: BeatSize = BeatSize::HalfWord

Source§

impl Beat for i32

Source§

const BEATSIZE: BeatSize = BeatSize::Word

Source§

impl Beat for u8

Source§

const BEATSIZE: BeatSize = BeatSize::Byte

Source§

impl Beat for u16

Source§

const BEATSIZE: BeatSize = BeatSize::HalfWord

Source§

impl Beat for u32

Source§

const BEATSIZE: BeatSize = BeatSize::Word

Implementors§