pub trait ISecurityProperty_Impl: Sized {
    // Required methods
    fn GetDirectCreatorSID(&self, psid: *mut PSID) -> Result<()>;
    fn GetOriginalCreatorSID(&self, psid: *mut PSID) -> Result<()>;
    fn GetDirectCallerSID(&self, psid: *mut PSID) -> Result<()>;
    fn GetOriginalCallerSID(&self, psid: *mut PSID) -> Result<()>;
    fn ReleaseSID(&self, psid: PSID) -> Result<()>;
}

Required Methods§

fn GetDirectCreatorSID(&self, psid: *mut PSID) -> Result<()>

fn GetOriginalCreatorSID(&self, psid: *mut PSID) -> Result<()>

fn GetDirectCallerSID(&self, psid: *mut PSID) -> Result<()>

fn GetOriginalCallerSID(&self, psid: *mut PSID) -> Result<()>

fn ReleaseSID(&self, psid: PSID) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§