Trait objc2_ui_kit::UIViewImplicitlyAnimating

source ·
pub unsafe trait UIViewImplicitlyAnimating: UIViewAnimating + IsMainThreadOnly {
    // Provided methods
    unsafe fn addAnimations_delayFactor(
        &self,
        animation: &Block<dyn Fn()>,
        delay_factor: CGFloat
    )
       where Self: Sized + Message { ... }
    unsafe fn addAnimations(&self, animation: &Block<dyn Fn()>)
       where Self: Sized + Message { ... }
    unsafe fn addCompletion(
        &self,
        completion: &Block<dyn Fn(UIViewAnimatingPosition)>
    )
       where Self: Sized + Message { ... }
    unsafe fn continueAnimationWithTimingParameters_durationFactor(
        &self,
        parameters: Option<&ProtocolObject<dyn UITimingCurveProvider>>,
        duration_factor: CGFloat
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIViewAnimating only.

Provided Methods§

source

unsafe fn addAnimations_delayFactor( &self, animation: &Block<dyn Fn()>, delay_factor: CGFloat )
where Self: Sized + Message,

Available on crate feature block2 only.
source

unsafe fn addAnimations(&self, animation: &Block<dyn Fn()>)
where Self: Sized + Message,

Available on crate feature block2 only.
source

unsafe fn addCompletion( &self, completion: &Block<dyn Fn(UIViewAnimatingPosition)> )
where Self: Sized + Message,

Available on crate feature block2 only.
source

unsafe fn continueAnimationWithTimingParameters_durationFactor( &self, parameters: Option<&ProtocolObject<dyn UITimingCurveProvider>>, duration_factor: CGFloat )
where Self: Sized + Message,

Available on crate feature UITimingCurveProvider only.

Trait Implementations§

source§

impl ProtocolType for dyn UIViewImplicitlyAnimating

source§

const NAME: &'static str = "UIViewImplicitlyAnimating"

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 UIViewImplicitlyAnimating

Implementations on Foreign Types§

source§

impl<T> UIViewImplicitlyAnimating for ProtocolObject<T>

Implementors§

source§

impl UIViewImplicitlyAnimating for UIViewPropertyAnimator

Available on crate feature UIViewPropertyAnimator only.