Skip to main content

ICoreWebView2DragStartingEventArgs_Impl

Trait ICoreWebView2DragStartingEventArgs_Impl 

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

Required Methods§

Source

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

Source

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

Source

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

Source

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

Source

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

Source

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

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§