atsamd_hal::icm

Trait RegionDesc

Source
pub trait RegionDesc {
    // Required methods
    fn set_region_address<T>(&mut self, addr: *const T);
    fn set_region_configuration(&mut self, cfg: RegionConfiguration);
    fn set_region_next(&mut self, next: RegionNext);
    fn reset_region_configuration_to_default(&mut self);
}
Expand description

Functions required by MainRegionDesc

Both Main List descriptors and Secondary List descriptors

Required Methods§

Source

fn set_region_address<T>(&mut self, addr: *const T)

Set the RegionAddress start of the region memory region

Source

fn set_region_configuration(&mut self, cfg: RegionConfiguration)

Set the specific region configuration

Source

fn set_region_next(&mut self, next: RegionNext)

Set the link to next region descriptor

Source

fn reset_region_configuration_to_default(&mut self)

Reset RegionConfiguration to default values

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.

Implementors§