pub trait SegmentDescriptorBuilder<Size> {
    fn code_descriptor(base: Size, limit: Size, cst: CodeSegmentType) -> Self;
fn data_descriptor(base: Size, limit: Size, dst: DataSegmentType) -> Self; }
Expand description

Trait to define functions that build architecture specific code and data descriptors.

Required methods

Implementors