Skip to main content

ICoreWebView2DragStartingEventArgs_Impl

Trait ICoreWebView2DragStartingEventArgs_Impl 

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

Required Methods§

Source

fn AllowedDropEffects(&self) -> Result<u32>

Source

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

Source

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

Source

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

Source

fn Position(&self) -> Result<POINT>

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".

Implementors§