pub trait ToSyncInterface{
type Target: ?Sized;
}
Expand description
Implemented by async interfaces to specify what the associated sync interface is.
The binder in any object implementing this trait should be compatible with the
Target
associated type, and using FromIBinder
to convert it to the target
should not fail.