Trait ISecurityProperty_Impl
pub trait ISecurityProperty_Impl: IUnknownImpl {
// 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<()>
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.