pub trait IntoMotionId {
// Required method
fn into_motion_id(self) -> WidgetId;
}Expand description
Required Methods§
Sourcefn into_motion_id(self) -> WidgetId
fn into_motion_id(self) -> WidgetId
Converts this value into the widget identity used by the motion runtime.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".