structstd.c.darwin.VM.INHERIT[src]

Values

ConstantSHARE[src]

Source Code

Source code
pub const SHARE: vm_inherit_t = 0

ConstantCOPY[src]

Source Code

Source code
pub const COPY: vm_inherit_t = 1

ConstantNONE[src]

Source Code

Source code
pub const NONE: vm_inherit_t = 2

ConstantDONATE_COPY[src]

Source Code

Source code
pub const DONATE_COPY: vm_inherit_t = 3

ConstantCOPY[src]

Source Code

Source code
pub const COPY: vm_inherit_t = 1

Source Code

Source code
pub const INHERIT = struct {
    pub const SHARE: vm_inherit_t = 0;
    pub const COPY: vm_inherit_t = 1;
    pub const NONE: vm_inherit_t = 2;
    pub const DONATE_COPY: vm_inherit_t = 3;
    pub const DEFAULT = COPY;
}