pub trait FixedExtManual:
IsA<Fixed>
+ Sealed
+ 'static {
// Provided methods
fn child_x<T: IsA<Widget>>(&self, item: &T) -> i32 { ... }
fn set_child_x<T: IsA<Widget>>(&self, item: &T, x: i32) { ... }
fn child_y<T: IsA<Widget>>(&self, item: &T) -> i32 { ... }
fn set_child_y<T: IsA<Widget>>(&self, item: &T, y: i32) { ... }
}Provided Methods§
fn child_x<T: IsA<Widget>>(&self, item: &T) -> i32
fn set_child_x<T: IsA<Widget>>(&self, item: &T, x: i32)
fn child_y<T: IsA<Widget>>(&self, item: &T) -> i32
fn set_child_y<T: IsA<Widget>>(&self, item: &T, y: i32)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".