windows::Win32::Security::Authorization

Trait IAzTask_Impl

pub trait IAzTask_Impl: IDispatch_Impl {
Show 26 methods // Required methods fn Name(&self) -> Result<BSTR>; fn SetName(&self, bstrname: &BSTR) -> Result<()>; fn Description(&self) -> Result<BSTR>; fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>; fn ApplicationData(&self) -> Result<BSTR>; fn SetApplicationData(&self, bstrapplicationdata: &BSTR) -> Result<()>; fn BizRule(&self) -> Result<BSTR>; fn SetBizRule(&self, bstrprop: &BSTR) -> Result<()>; fn BizRuleLanguage(&self) -> Result<BSTR>; fn SetBizRuleLanguage(&self, bstrprop: &BSTR) -> Result<()>; fn BizRuleImportedPath(&self) -> Result<BSTR>; fn SetBizRuleImportedPath(&self, bstrprop: &BSTR) -> Result<()>; fn IsRoleDefinition(&self) -> Result<BOOL>; fn SetIsRoleDefinition(&self, fprop: BOOL) -> Result<()>; fn Operations(&self) -> Result<VARIANT>; fn Tasks(&self) -> Result<VARIANT>; fn AddOperation(&self, bstrop: &BSTR, varreserved: &VARIANT) -> Result<()>; fn DeleteOperation( &self, bstrop: &BSTR, varreserved: &VARIANT, ) -> Result<()>; fn AddTask(&self, bstrtask: &BSTR, varreserved: &VARIANT) -> Result<()>; fn DeleteTask(&self, bstrtask: &BSTR, varreserved: &VARIANT) -> Result<()>; fn Writable(&self) -> Result<BOOL>; fn GetProperty( &self, lpropid: i32, varreserved: &VARIANT, ) -> Result<VARIANT>; fn SetProperty( &self, lpropid: i32, varprop: &VARIANT, varreserved: &VARIANT, ) -> Result<()>; fn AddPropertyItem( &self, lpropid: i32, varprop: &VARIANT, varreserved: &VARIANT, ) -> Result<()>; fn DeletePropertyItem( &self, lpropid: i32, varprop: &VARIANT, varreserved: &VARIANT, ) -> Result<()>; fn Submit(&self, lflags: i32, varreserved: &VARIANT) -> Result<()>;
}

Required Methods§

fn Name(&self) -> Result<BSTR>

fn SetName(&self, bstrname: &BSTR) -> Result<()>

fn Description(&self) -> Result<BSTR>

fn SetDescription(&self, bstrdescription: &BSTR) -> Result<()>

fn ApplicationData(&self) -> Result<BSTR>

fn SetApplicationData(&self, bstrapplicationdata: &BSTR) -> Result<()>

fn BizRule(&self) -> Result<BSTR>

fn SetBizRule(&self, bstrprop: &BSTR) -> Result<()>

fn BizRuleLanguage(&self) -> Result<BSTR>

fn SetBizRuleLanguage(&self, bstrprop: &BSTR) -> Result<()>

fn BizRuleImportedPath(&self) -> Result<BSTR>

fn SetBizRuleImportedPath(&self, bstrprop: &BSTR) -> Result<()>

fn IsRoleDefinition(&self) -> Result<BOOL>

fn SetIsRoleDefinition(&self, fprop: BOOL) -> Result<()>

fn Operations(&self) -> Result<VARIANT>

fn Tasks(&self) -> Result<VARIANT>

fn AddOperation(&self, bstrop: &BSTR, varreserved: &VARIANT) -> Result<()>

fn DeleteOperation(&self, bstrop: &BSTR, varreserved: &VARIANT) -> Result<()>

fn AddTask(&self, bstrtask: &BSTR, varreserved: &VARIANT) -> Result<()>

fn DeleteTask(&self, bstrtask: &BSTR, varreserved: &VARIANT) -> Result<()>

fn Writable(&self) -> Result<BOOL>

fn GetProperty(&self, lpropid: i32, varreserved: &VARIANT) -> Result<VARIANT>

fn SetProperty( &self, lpropid: i32, varprop: &VARIANT, varreserved: &VARIANT, ) -> Result<()>

fn AddPropertyItem( &self, lpropid: i32, varprop: &VARIANT, varreserved: &VARIANT, ) -> Result<()>

fn DeletePropertyItem( &self, lpropid: i32, varprop: &VARIANT, varreserved: &VARIANT, ) -> Result<()>

fn Submit(&self, lflags: i32, varreserved: &VARIANT) -> 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.

Implementors§