pub unsafe trait UIDynamicAnimatorDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn dynamicAnimatorWillResume(&self, animator: &UIDynamicAnimator)
where Self: Sized + Message { ... }
fn dynamicAnimatorDidPause(&self, animator: &UIDynamicAnimator)
where Self: Sized + Message { ... }
}Available on crate feature
UIDynamicAnimator only.Expand description
Provided Methods§
fn dynamicAnimatorWillResume(&self, animator: &UIDynamicAnimator)
fn dynamicAnimatorDidPause(&self, animator: &UIDynamicAnimator)
Trait Implementations§
Source§impl ProtocolType for dyn UIDynamicAnimatorDelegate
impl ProtocolType for dyn UIDynamicAnimatorDelegate
impl<T> ImplementedBy<T> for dyn UIDynamicAnimatorDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".