Trait objc2_web_kit::WebEditingDelegate

source ·
pub unsafe trait WebEditingDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn webViewDidBeginEditing(
        &self,
        notification: Option<&NSNotification>
    )
       where Self: Sized + Message { ... }
    unsafe fn webViewDidChange(&self, notification: Option<&NSNotification>)
       where Self: Sized + Message { ... }
    unsafe fn webViewDidEndEditing(&self, notification: Option<&NSNotification>)
       where Self: Sized + Message { ... }
    unsafe fn webViewDidChangeTypingStyle(
        &self,
        notification: Option<&NSNotification>
    )
       where Self: Sized + Message { ... }
    unsafe fn webViewDidChangeSelection(
        &self,
        notification: Option<&NSNotification>
    )
       where Self: Sized + Message { ... }
}
👎Deprecated
Available on crate feature WebEditingDelegate only.

Provided Methods§

source

unsafe fn webViewDidBeginEditing(&self, notification: Option<&NSNotification>)
where Self: Sized + Message,

👎Deprecated
source

unsafe fn webViewDidChange(&self, notification: Option<&NSNotification>)
where Self: Sized + Message,

👎Deprecated
source

unsafe fn webViewDidEndEditing(&self, notification: Option<&NSNotification>)
where Self: Sized + Message,

👎Deprecated
source

unsafe fn webViewDidChangeTypingStyle( &self, notification: Option<&NSNotification> )
where Self: Sized + Message,

👎Deprecated
source

unsafe fn webViewDidChangeSelection( &self, notification: Option<&NSNotification> )
where Self: Sized + Message,

👎Deprecated

Trait Implementations§

source§

impl ProtocolType for dyn WebEditingDelegate

source§

const NAME: &'static str = "WebEditingDelegate"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn WebEditingDelegate

Implementations on Foreign Types§

source§

impl<T> WebEditingDelegate for ProtocolObject<T>

Implementors§