pub unsafe trait UIFontPickerViewControllerDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn fontPickerViewControllerDidCancel(
&self,
view_controller: &UIFontPickerViewController,
)
where Self: Sized + Message { ... }
fn fontPickerViewControllerDidPickFont(
&self,
view_controller: &UIFontPickerViewController,
)
where Self: Sized + Message { ... }
}Available on crate feature
UIFontPickerViewController only.Expand description
Provided Methods§
fn fontPickerViewControllerDidCancel( &self, view_controller: &UIFontPickerViewController, )
Available on crate features
UIResponder and UIViewController only.fn fontPickerViewControllerDidPickFont( &self, view_controller: &UIFontPickerViewController, )
Available on crate features
UIResponder and UIViewController only.Trait Implementations§
impl<T> ImplementedBy<T> for dyn UIFontPickerViewControllerDelegate
Source§impl ProtocolType for dyn UIFontPickerViewControllerDelegate
impl ProtocolType for dyn UIFontPickerViewControllerDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementations on Foreign Types§
impl<T> UIFontPickerViewControllerDelegate for ProtocolObject<T>where
T: ?Sized + UIFontPickerViewControllerDelegate,
Implementors§
impl UIFontPickerViewControllerDelegate for UITextFormattingCoordinator
Available on crate feature
UITextFormattingCoordinator only.