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