Skip to main content

ICoreWebView2DragStartingEventArgs_Impl

Trait ICoreWebView2DragStartingEventArgs_Impl 

Source
pub trait ICoreWebView2DragStartingEventArgs_Impl: IUnknownImpl {
    // Required methods
    fn AllowedDropEffects(&self, value: *mut u32) -> Result<()>;
    fn Data(&self) -> Result<IDataObject>;
    fn Handled(&self, value: *mut BOOL) -> Result<()>;
    fn SetHandled(&self, value: BOOL) -> Result<()>;
    fn Position(&self, value: *mut POINT) -> Result<()>;
    fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>;
}

Required Methods§

Source

fn AllowedDropEffects(&self, value: *mut u32) -> Result<()>

Source

fn Data(&self) -> Result<IDataObject>

Source

fn Handled(&self, value: *mut BOOL) -> Result<()>

Source

fn SetHandled(&self, value: BOOL) -> Result<()>

Source

fn Position(&self, value: *mut POINT) -> Result<()>

Source

fn GetDeferral(&self) -> Result<ICoreWebView2Deferral>

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§