pub trait IFsrmAction_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Id(&self) -> Result<GUID>;
    fn ActionType(&self) -> Result<FsrmActionType>;
    fn RunLimitInterval(&self) -> Result<i32>;
    fn SetRunLimitInterval(&self, minutes: i32) -> Result<()>;
    fn Delete(&self) -> Result<()>;
}

Required Methods§

fn Id(&self) -> Result<GUID>

fn ActionType(&self) -> Result<FsrmActionType>

fn RunLimitInterval(&self) -> Result<i32>

fn SetRunLimitInterval(&self, minutes: i32) -> Result<()>

fn Delete(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§