pub trait ICoreWebView2Frame_Impl: Sized {
    // Required methods
    fn Name(&self, name: *mut PWSTR) -> Result<(), Error>;
    fn add_NameChanged(
        &self,
        eventhandler: Option<&ICoreWebView2FrameNameChangedEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<(), Error>;
    fn remove_NameChanged(
        &self,
        token: &EventRegistrationToken
    ) -> Result<(), Error>;
    fn AddHostObjectToScriptWithOrigins(
        &self,
        name: &PCWSTR,
        object: *mut VARIANT,
        originscount: u32,
        origins: *const PCWSTR
    ) -> Result<(), Error>;
    fn RemoveHostObjectFromScript(&self, name: &PCWSTR) -> Result<(), Error>;
    fn add_Destroyed(
        &self,
        eventhandler: Option<&ICoreWebView2FrameDestroyedEventHandler>,
        token: *mut EventRegistrationToken
    ) -> Result<(), Error>;
    fn remove_Destroyed(
        &self,
        token: &EventRegistrationToken
    ) -> Result<(), Error>;
    fn IsDestroyed(&self, destroyed: *mut BOOL) -> Result<(), Error>;
}

Required Methods§

source

fn Name(&self, name: *mut PWSTR) -> Result<(), Error>

source

fn add_NameChanged( &self, eventhandler: Option<&ICoreWebView2FrameNameChangedEventHandler>, token: *mut EventRegistrationToken ) -> Result<(), Error>

source

fn remove_NameChanged( &self, token: &EventRegistrationToken ) -> Result<(), Error>

source

fn AddHostObjectToScriptWithOrigins( &self, name: &PCWSTR, object: *mut VARIANT, originscount: u32, origins: *const PCWSTR ) -> Result<(), Error>

source

fn RemoveHostObjectFromScript(&self, name: &PCWSTR) -> Result<(), Error>

source

fn add_Destroyed( &self, eventhandler: Option<&ICoreWebView2FrameDestroyedEventHandler>, token: *mut EventRegistrationToken ) -> Result<(), Error>

source

fn remove_Destroyed(&self, token: &EventRegistrationToken) -> Result<(), Error>

source

fn IsDestroyed(&self, destroyed: *mut BOOL) -> Result<(), Error>

Object Safety§

This trait is not object safe.

Implementors§