Trait objc2_ui_kit::UITextCursorView

source ·
pub unsafe trait UITextCursorView: UICoordinateSpace + IsMainThreadOnly {
    // Provided methods
    unsafe fn isBlinking(&self) -> bool
       where Self: Sized + Message { ... }
    unsafe fn setBlinking(&self, blinking: bool)
       where Self: Sized + Message { ... }
    unsafe fn resetBlinkAnimation(&self)
       where Self: Sized + Message { ... }
}
Available on crate features UITextCursorView and UIView only.

Provided Methods§

source

unsafe fn isBlinking(&self) -> bool
where Self: Sized + Message,

source

unsafe fn setBlinking(&self, blinking: bool)
where Self: Sized + Message,

source

unsafe fn resetBlinkAnimation(&self)
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UITextCursorView

source§

const NAME: &'static str = "UITextCursorView"

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 UITextCursorView

Implementations on Foreign Types§

source§

impl<T> UITextCursorView for ProtocolObject<T>
where T: ?Sized + UITextCursorView,

Implementors§

source§

impl UITextCursorView for UIStandardTextCursorView

Available on crate features UIResponder and UIStandardTextCursorView only.