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