pub unsafe trait WKImageAnimatable: NSObjectProtocol {
// Provided methods
unsafe fn startAnimating(&self)
where Self: Sized + Message { ... }
unsafe fn startAnimatingWithImagesInRange_duration_repeatCount(
&self,
image_range: NSRange,
duration: NSTimeInterval,
repeat_count: NSInteger,
)
where Self: Sized + Message { ... }
unsafe fn stopAnimating(&self)
where Self: Sized + Message { ... }
}Available on crate feature
WKInterfaceImage only.Expand description
Provided Methods§
unsafe fn startAnimating(&self)
unsafe fn startAnimatingWithImagesInRange_duration_repeatCount( &self, image_range: NSRange, duration: NSTimeInterval, repeat_count: NSInteger, )
unsafe fn stopAnimating(&self)
Trait Implementations§
Source§impl ProtocolType for dyn WKImageAnimatable
impl ProtocolType for dyn WKImageAnimatable
impl<T> ImplementedBy<T> for dyn WKImageAnimatable
Implementations on Foreign Types§
impl<T> WKImageAnimatable for ProtocolObject<T>where
T: ?Sized + WKImageAnimatable,
Implementors§
impl WKImageAnimatable for WKInterfaceGroup
Available on crate feature
WKInterfaceGroup only.