pub trait RegionDesc {
    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

Set the RegionAddress start of the region memory region

Set the specific region configuration

Set the link to next region descriptor

Reset RegionConfiguration to default values

Implementors