Trait IFolderAction_Impl
pub trait IFolderAction_Impl: IDispatch_Impl {
// Required methods
fn Age(&self) -> Result<u32>;
fn SetAge(&self, ulage: u32) -> Result<()>;
fn Size(&self) -> Result<u32>;
fn SetSize(&self, ulage: u32) -> Result<()>;
fn Actions(&self) -> Result<FolderActionSteps>;
fn SetActions(&self, steps: FolderActionSteps) -> Result<()>;
fn SendCabTo(&self) -> Result<BSTR>;
fn SetSendCabTo(&self, bstrdestination: &BSTR) -> Result<()>;
}
Required Methods§
fn Age(&self) -> Result<u32>
fn SetAge(&self, ulage: u32) -> Result<()>
fn Size(&self) -> Result<u32>
fn SetSize(&self, ulage: u32) -> Result<()>
fn Actions(&self) -> Result<FolderActionSteps>
fn SetActions(&self, steps: FolderActionSteps) -> Result<()>
fn SendCabTo(&self) -> Result<BSTR>
fn SetSendCabTo(&self, bstrdestination: &BSTR) -> 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.