// TODO QChar, QDateTime, QDate, QTime, QUuid, QUrl, QRegularExpression, QMimeData
template<typenameT>bool_bind(T&t){return_bind(const_cast<constT&>(t));}//!< Call _bind(T&&) with a single const T& copy by default \warning Cannot std::move(t) since Write must not change t
template<typenameT>typenamestd::enable_if<!std::is_reference<T>::value,bool>::type_bind(constT&t){Tcopy(t);return_bind(std::move(copy));}//!< Call _bind(T&&) with a single const T& copy by default \warning Cannot std::move(t) since Write must not change t