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§
Sourcefn set_region_address<T>(&mut self, addr: *const T)
fn set_region_address<T>(&mut self, addr: *const T)
Set the RegionAddress
start of the region memory region
Sourcefn set_region_configuration(&mut self, cfg: RegionConfiguration)
fn set_region_configuration(&mut self, cfg: RegionConfiguration)
Set the specific region configuration
Sourcefn set_region_next(&mut self, next: RegionNext)
fn set_region_next(&mut self, next: RegionNext)
Set the link to next region descriptor
Sourcefn reset_region_configuration_to_default(&mut self)
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.