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.Expand description
Provided Methods§
Sourceunsafe fn webViewDidBeginEditing(&self, notification: Option<&NSNotification>)
👎Deprecated
unsafe fn webViewDidBeginEditing(&self, notification: Option<&NSNotification>)
§Safety
notification might not allow None.
Sourceunsafe fn webViewDidChange(&self, notification: Option<&NSNotification>)
👎Deprecated
unsafe fn webViewDidChange(&self, notification: Option<&NSNotification>)
§Safety
notification might not allow None.
Sourceunsafe fn webViewDidEndEditing(&self, notification: Option<&NSNotification>)
👎Deprecated
unsafe fn webViewDidEndEditing(&self, notification: Option<&NSNotification>)
§Safety
notification might not allow None.
Sourceunsafe fn webViewDidChangeTypingStyle(
&self,
notification: Option<&NSNotification>,
)
👎Deprecated
unsafe fn webViewDidChangeTypingStyle( &self, notification: Option<&NSNotification>, )
§Safety
notification might not allow None.
Sourceunsafe fn webViewDidChangeSelection(
&self,
notification: Option<&NSNotification>,
)
👎Deprecated
unsafe fn webViewDidChangeSelection( &self, notification: Option<&NSNotification>, )
§Safety
notification might not allow None.
Trait Implementations§
impl<T> ImplementedBy<T> for dyn WebEditingDelegate
Source§impl ProtocolType for dyn WebEditingDelegate
impl ProtocolType for dyn WebEditingDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".