[][src]Trait probe_rs::architecture::arm::memory::ToMemoryReadSize

pub trait ToMemoryReadSize: Into<u32> + Copy {
    const ALIGNMENT_MASK: u32;
    const MEMORY_TRANSFER_SIZE: u8;

    fn to_result(value: u32) -> Self;
}

Associated Constants

const ALIGNMENT_MASK: u32

The alignment mask that is required to test for properly aligned memory.

const MEMORY_TRANSFER_SIZE: u8

The transfer size expressed in bytes.

Loading content...

Required methods

fn to_result(value: u32) -> Self

Transform a generic 32 bit sized value to a transfer size sized one.

Loading content...

Implementations on Foreign Types

impl ToMemoryReadSize for u32[src]

impl ToMemoryReadSize for u16[src]

impl ToMemoryReadSize for u8[src]

Loading content...

Implementors

Loading content...