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

Required Methods

Implementors