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§
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>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".