pub trait ConnectBindingExt {
type Target;
// Required method
fn with_binding<B: Binding<Target = Self::Target>>(binding: &B) -> Self;
}Expand description
Extension for ConnectBinding.
This trait is not implemented manually, but through
automatically implemented for all types that implement
ConnectBinding.
Required Associated Types§
Sourcetype Target
type Target
The type of the primary property.
Inherited from ConnectBinding::Target.
Required 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.