pub trait DetailedSignal:
Copy
+ Debug
+ Into<ConnectDetails<Self>> {
type Signal: Signal;
type Object: ObjectType;
type Arguments: for<'a> FromValues<'a> + 'static;
type Return: ToValueOption;
const DETAIL: Option<&'static str>;
// Provided methods
fn detail() -> Option<Quark> { ... }
fn create_detail() -> Quark { ... }
}
Required Associated Constants§
Required Associated Types§
type Signal: Signal
type Object: ObjectType
type Arguments: for<'a> FromValues<'a> + 'static
type Return: ToValueOption
Provided Methods§
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.