pub trait GhostPadExt:
IsA<GhostPad>
+ Sealed
+ 'static {
// Provided methods
fn target(&self) -> Option<Pad> { ... }
fn set_target(
&self,
newtarget: Option<&impl IsA<Pad>>,
) -> Result<(), BoolError> { ... }
}
Provided Methods§
fn target(&self) -> Option<Pad>
fn set_target(&self, newtarget: Option<&impl IsA<Pad>>) -> Result<(), BoolError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.