Trait IADsAcl_Impl
pub trait IADsAcl_Impl: IDispatch_Impl {
// Required methods
fn ProtectedAttrName(&self) -> Result<BSTR>;
fn SetProtectedAttrName(&self, bstrprotectedattrname: &BSTR) -> Result<()>;
fn SubjectName(&self) -> Result<BSTR>;
fn SetSubjectName(&self, bstrsubjectname: &BSTR) -> Result<()>;
fn Privileges(&self) -> Result<i32>;
fn SetPrivileges(&self, lnprivileges: i32) -> Result<()>;
fn CopyAcl(&self) -> Result<IDispatch>;
}
Required Methods§
fn ProtectedAttrName(&self) -> Result<BSTR>
fn SetProtectedAttrName(&self, bstrprotectedattrname: &BSTR) -> Result<()>
fn SubjectName(&self) -> Result<BSTR>
fn SetSubjectName(&self, bstrsubjectname: &BSTR) -> Result<()>
fn Privileges(&self) -> Result<i32>
fn SetPrivileges(&self, lnprivileges: i32) -> Result<()>
fn CopyAcl(&self) -> Result<IDispatch>
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.