[][src]Trait x86::segmentation::SegmentDescriptorBuilder

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

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

Required methods

fn code_descriptor(base: Size, limit: Size, cst: CodeSegmentType) -> Self

fn data_descriptor(base: Size, limit: Size, dst: DataSegmentType) -> Self

Loading content...

Implementors

impl SegmentDescriptorBuilder<u32> for DescriptorBuilder[src]

Loading content...