Trait ILogonTrigger_Impl
pub trait ILogonTrigger_Impl: ITrigger_Impl {
// Required methods
fn Delay(&self, pdelay: *mut BSTR) -> Result<()>;
fn SetDelay(&self, delay: &BSTR) -> Result<()>;
fn UserId(&self, puser: *mut BSTR) -> Result<()>;
fn SetUserId(&self, user: &BSTR) -> Result<()>;
}
Required Methods§
fn Delay(&self, pdelay: *mut BSTR) -> Result<()>
fn SetDelay(&self, delay: &BSTR) -> Result<()>
fn UserId(&self, puser: *mut BSTR) -> Result<()>
fn SetUserId(&self, user: &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.