Skip to main content

QDataStream

Struct QDataStream 

Source
pub struct QDataStream { /* private fields */ }
Expand description

C++ class: QDataStream.

Implementations§

Source§

impl QDataStream

Source

pub unsafe fn abort_transaction(&self)

Calls C++ function: void QDataStream::abortTransaction().

Source

pub unsafe fn at_end(&self) -> bool

Calls C++ function: bool QDataStream::atEnd() const.

Source

pub unsafe fn byte_order(&self) -> ByteOrder

Calls C++ function: QDataStream::ByteOrder QDataStream::byteOrder() const.

Source

pub unsafe fn commit_transaction(&self) -> bool

Calls C++ function: bool QDataStream::commitTransaction().

Source

pub unsafe fn device(&self) -> QPtr<QIODevice>

Calls C++ function: QIODevice* QDataStream::device() const.

Source

pub unsafe fn floating_point_precision(&self) -> FloatingPointPrecision

Calls C++ function: QDataStream::FloatingPointPrecision QDataStream::floatingPointPrecision() const.

Source

pub unsafe fn new() -> CppBox<QDataStream>

Calls C++ function: [constructor] void QDataStream::QDataStream().

Source

pub unsafe fn from_q_io_device( arg1: impl CastInto<Ptr<QIODevice>>, ) -> CppBox<QDataStream>

Calls C++ function: [constructor] void QDataStream::QDataStream(QIODevice* arg1).

Source

pub unsafe fn from_q_byte_array_q_flags_open_mode_flag( arg1: impl CastInto<Ptr<QByteArray>>, flags: QFlags<OpenModeFlag>, ) -> CppBox<QDataStream>

Calls C++ function: [constructor] void QDataStream::QDataStream(QByteArray* arg1, QFlags<QIODevice::OpenModeFlag> flags).

Source

pub unsafe fn from_q_byte_array( arg1: impl CastInto<Ref<QByteArray>>, ) -> CppBox<QDataStream>

Calls C++ function: [constructor] void QDataStream::QDataStream(const QByteArray& arg1).

Source

pub unsafe fn read_bytes( &self, arg1: *mut *mut c_char, len: *mut c_uint, ) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::readBytes(char*& arg1, unsigned int& len).

Source

pub unsafe fn read_raw_data(&self, arg1: *mut c_char, len: c_int) -> c_int

Calls C++ function: int QDataStream::readRawData(char* arg1, int len).

Source

pub unsafe fn reset_status(&self)

Calls C++ function: void QDataStream::resetStatus().

Source

pub unsafe fn rollback_transaction(&self)

Calls C++ function: void QDataStream::rollbackTransaction().

Source

pub unsafe fn set_byte_order(&self, arg1: ByteOrder)

Calls C++ function: void QDataStream::setByteOrder(QDataStream::ByteOrder arg1).

Source

pub unsafe fn set_device(&self, arg1: impl CastInto<Ptr<QIODevice>>)

Calls C++ function: void QDataStream::setDevice(QIODevice* arg1).

Source

pub unsafe fn set_floating_point_precision( &self, precision: FloatingPointPrecision, )

Calls C++ function: void QDataStream::setFloatingPointPrecision(QDataStream::FloatingPointPrecision precision).

Source

pub unsafe fn set_status(&self, status: Status)

Calls C++ function: void QDataStream::setStatus(QDataStream::Status status).

Source

pub unsafe fn set_version(&self, arg1: c_int)

Calls C++ function: void QDataStream::setVersion(int arg1).

Source

pub unsafe fn shl_short(&self, i: c_short) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(short i).

Source

pub unsafe fn shl_ushort(&self, i: c_ushort) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(unsigned short i).

Source

pub unsafe fn shl_int(&self, i: c_int) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(int i).

Source

pub unsafe fn shl_uint(&self, i: c_uint) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(unsigned int i).

Source

pub unsafe fn shl_longlong(&self, i: c_longlong) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(long long i).

Source

pub unsafe fn shl_ulonglong(&self, i: c_ulonglong) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(unsigned long long i).

Source

pub unsafe fn shl_double(&self, f: c_double) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(double f).

Source

pub unsafe fn shr_short(&self, i: *mut c_short) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(short& i).

Source

pub unsafe fn shr_ushort(&self, i: *mut c_ushort) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(unsigned short& i).

Source

pub unsafe fn shr_int(&self, i: *mut c_int) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(int& i).

Source

pub unsafe fn shr_uint(&self, i: *mut c_uint) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(unsigned int& i).

Source

pub unsafe fn shr_longlong(&self, i: *mut c_longlong) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(long long& i).

Source

pub unsafe fn shr_ulonglong(&self, i: *mut c_ulonglong) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(unsigned long long& i).

Source

pub unsafe fn shr_double(&self, f: *mut c_double) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(double& f).

Source

pub unsafe fn skip_raw_data(&self, len: c_int) -> c_int

Calls C++ function: int QDataStream::skipRawData(int len).

Source

pub unsafe fn start_transaction(&self)

Calls C++ function: void QDataStream::startTransaction().

Source

pub unsafe fn status(&self) -> Status

Calls C++ function: QDataStream::Status QDataStream::status() const.

Source

pub unsafe fn unset_device(&self)

Calls C++ function: void QDataStream::unsetDevice().

Source

pub unsafe fn version(&self) -> c_int

Calls C++ function: int QDataStream::version() const.

Source

pub unsafe fn write_bytes( &self, arg1: *const c_char, len: c_uint, ) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::writeBytes(const char* arg1, unsigned int len).

Source

pub unsafe fn write_raw_data(&self, arg1: *const c_char, len: c_int) -> c_int

Calls C++ function: int QDataStream::writeRawData(const char* arg1, int len).

Trait Implementations§

Source§

impl CppDeletable for QDataStream

Source§

unsafe fn delete(&self)

Calls C++ function: [destructor] void QDataStream::~QDataStream().

Source§

impl Shl<*const i8> for &QDataStream

Source§

fn shl(self, str: *const c_char) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(const char* str).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<Base64Option>> for &QDataStream

Source§

fn shl(self, e: QFlags<Base64Option>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QByteArray::Base64Option> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<BoundaryReason>> for &QDataStream

Source§

fn shl(self, e: QFlags<BoundaryReason>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QTextBoundaryFinder::BoundaryReason> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<CheckIndexOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<CheckIndexOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QAbstractItemModel::CheckIndexOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<ComponentFormattingOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<ComponentFormattingOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QUrl::ComponentFormattingOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<ConversionFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<ConversionFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QTextCodec::ConversionFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<DataSizeFormat>> for &QDataStream

Source§

fn shl(self, e: QFlags<DataSizeFormat>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QLocale::DataSizeFormat> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<DiagnosticNotationOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<DiagnosticNotationOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QCborValue::DiagnosticNotationOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<DropAction>> for &QDataStream

Source§

fn shl(self, e: QFlags<DropAction>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<Qt::DropAction> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<EncodingOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<EncodingOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QCborValue::EncodingOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<FileHandleFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<FileHandleFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QFileDevice::FileHandleFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<Filter>> for &QDataStream

Source§

fn shl(self, e: QFlags<Filter>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QDir::Filter> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<FindChildOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<FindChildOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<Qt::FindChildOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<Flag>> for &QDataStream

Source§

fn shl(self, e: QFlags<Flag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QCommandLineOption::Flag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<ItemFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<ItemFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<Qt::ItemFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<IteratorFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<IteratorFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QDirIterator::IteratorFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<LoadHint>> for &QDataStream

Source§

fn shl(self, e: QFlags<LoadHint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QLibrary::LoadHint> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<LocateOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<LocateOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QStandardPaths::LocateOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<MatchFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<MatchFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<Qt::MatchFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<MatchOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<MatchOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QRegularExpression::MatchOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<NumberFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<NumberFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QTextStream::NumberFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<NumberOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<NumberOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QLocale::NumberOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<OpenModeFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<OpenModeFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QIODevice::OpenModeFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<PatternOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<PatternOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QRegularExpression::PatternOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<Permission>> for &QDataStream

Source§

fn shl(self, e: QFlags<Permission>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QFileDevice::Permission> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<ProcessEventsFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<ProcessEventsFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QEventLoop::ProcessEventsFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<SectionFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<SectionFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QString::SectionFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<SelectionFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<SelectionFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QItemSelectionModel::SelectionFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<SortFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<SortFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QDir::SortFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<SplitBehaviorFlags>> for &QDataStream

Source§

fn shl(self, e: QFlags<SplitBehaviorFlags>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<Qt::SplitBehaviorFlags> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<TypeFlag>> for &QDataStream

Source§

fn shl(self, e: QFlags<TypeFlag>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QMetaType::TypeFlag> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<QFlags<UserInputResolutionOption>> for &QDataStream

Source§

fn shl(self, e: QFlags<UserInputResolutionOption>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QFlags<QUrl::UserInputResolutionOption> e).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QBitArray>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QBitArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QBitArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QByteArray>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QByteArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QByteArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QCborArray>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QCborArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QCborArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QCborMap>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QCborMap>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QCborMap& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QCborValue>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QCborValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QCborValue& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QChar>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QChar>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, QChar arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QDate>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QDate>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QDate& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QDateTime>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QDateTime>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QDateTime& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QEasingCurve>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QEasingCurve>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QEasingCurve& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QHashOfIntQByteArray>> for &QDataStream

Source§

fn shl(self, hash: Ref<QHashOfIntQByteArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QHash<int, QByteArray>& hash).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QHashOfQStringQVariant>> for &QDataStream

Source§

fn shl(self, hash: Ref<QHashOfQStringQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QHash<QString, QVariant>& hash).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QJsonArray>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QJsonArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QJsonArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QJsonDocument>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QJsonDocument>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QJsonDocument& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QJsonObject>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QJsonObject>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QJsonObject& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QJsonValue>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QJsonValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QJsonValue& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QLine>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QLine>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QLine& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QLineF>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QLineF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QLineF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfCountry>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfCountry>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QLocale::Country>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfDayOfWeek>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfDayOfWeek>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<Qt::DayOfWeek>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfInt>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfInt>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<int>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQAbstractAnimation>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQAbstractAnimation>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QAbstractAnimation*>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQAbstractItemModel>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQAbstractItemModel>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QAbstractItemModel*>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQAbstractState>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQAbstractState>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QAbstractState*>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQAbstractTransition>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQAbstractTransition>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QAbstractTransition*>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQByteArray>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQByteArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QByteArray>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQLocale>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQLocale>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QLocale>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQModelIndex>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQModelIndex>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QModelIndex>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQObject>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQObject>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QObject*>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQPairOfQStringQString>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQPairOfQStringQString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QPair<QString, QString>>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQPersistentModelIndex>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQPersistentModelIndex>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QPersistentModelIndex>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQString>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QString>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQStringView>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQStringView>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QStringView>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQUrl>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQUrl>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QUrl>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QListOfQVariant>> for &QDataStream

Source§

fn shl(self, l: Ref<QListOfQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QList<QVariant>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QLocale>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QLocale>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QLocale& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QMapOfIntQVariant>> for &QDataStream

Source§

fn shl(self, map: Ref<QMapOfIntQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QMap<int, QVariant>& map).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QMapOfQStringQVariant>> for &QDataStream

Source§

fn shl(self, map: Ref<QMapOfQStringQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QMap<QString, QVariant>& map).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QMargins>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QMargins>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QMargins& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QMarginsF>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QMarginsF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QMarginsF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPairOfDoubleQVariant>> for &QDataStream

Source§

fn shl(self, p: Ref<QPairOfDoubleQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QPair<double, QVariant>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPairOfLonglongUint>> for &QDataStream

Source§

fn shl(self, p: Ref<QPairOfLonglongUint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QPair<long long, unsigned int>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPairOfQCborValueQCborValue>> for &QDataStream

Source§

fn shl(self, p: Ref<QPairOfQCborValueQCborValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QPair<QCborValue, QCborValue>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPairOfQCborValueRefQCborValueRef>> for &QDataStream

Source§

fn shl(self, p: Ref<QPairOfQCborValueRefQCborValueRef>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QPair<QCborValueRef, QCborValueRef>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPairOfQStringQJsonValue>> for &QDataStream

Source§

fn shl(self, p: Ref<QPairOfQStringQJsonValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QPair<QString, QJsonValue>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPairOfQStringQString>> for &QDataStream

Source§

fn shl(self, p: Ref<QPairOfQStringQString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QPair<QString, QString>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPoint>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QPoint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QPoint& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QPointF>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QPointF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QPointF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QRect>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QRect>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QRect& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QRectF>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QRectF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QRectF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QRegExp>> for &QDataStream

Source§

fn shl(self, reg_exp: Ref<QRegExp>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& out, const QRegExp& regExp).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QRegularExpression>> for &QDataStream

Source§

fn shl(self, re: Ref<QRegularExpression>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& out, const QRegularExpression& re).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QSetOfQAbstractState>> for &QDataStream

Source§

fn shl(self, set: Ref<QSetOfQAbstractState>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QSet<QAbstractState*>& set).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QSize>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QSize>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QSize& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QSizeF>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QSizeF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QSizeF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QString>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QString& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QTime>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QTime>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QTime& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QTimeZone>> for &QDataStream

Source§

fn shl(self, tz: Ref<QTimeZone>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& ds, const QTimeZone& tz).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QUrl>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QUrl>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QUrl& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QUuid>> for &QDataStream

Source§

fn shl(self, arg2: Ref<QUuid>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& arg1, const QUuid& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVariant>> for &QDataStream

Source§

fn shl(self, p: Ref<QVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QVariant& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVectorOfInt>> for &QDataStream

Source§

fn shl(self, v: Ref<QVectorOfInt>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QVector<int>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVectorOfQCborValue>> for &QDataStream

Source§

fn shl(self, v: Ref<QVectorOfQCborValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QVector<QCborValue>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVectorOfQPairOfDoubleQVariant>> for &QDataStream

Source§

fn shl(self, v: Ref<QVectorOfQPairOfDoubleQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QVector<QPair<double, QVariant>>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVectorOfQPointF>> for &QDataStream

Source§

fn shl(self, v: Ref<QVectorOfQPointF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QVector<QPointF>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVectorOfUint>> for &QDataStream

Source§

fn shl(self, v: Ref<QVectorOfUint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, const QVector<unsigned int>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<QVersionNumber>> for &QDataStream

Source§

fn shl(self, version: Ref<QVersionNumber>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& out, const QVersionNumber& version).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Ref<Qfloat16>> for &QDataStream

Source§

fn shl(self, f: Ref<Qfloat16>) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(qfloat16 f).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<Type> for &QDataStream

Source§

fn shl(self, p: Type) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator<<(QDataStream& s, QVariant::Type p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<bool> for &QDataStream

Source§

fn shl(self, i: bool) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(bool i).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<f32> for &QDataStream

Source§

fn shl(self, f: c_float) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(float f).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<i8> for &QDataStream

Source§

fn shl(self, i: c_schar) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(signed char i).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shl<u8> for &QDataStream

Source§

fn shl(self, i: c_uchar) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator<<(unsigned char i).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the << operator.
Source§

impl Shr<*mut *mut i8> for &QDataStream

Source§

fn shr(self, str: *mut *mut c_char) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(char*& str).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<*mut Type> for &QDataStream

Source§

fn shr(self, p: *mut Type) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVariant::Type& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<*mut bool> for &QDataStream

Source§

fn shr(self, i: *mut bool) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(bool& i).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<*mut f32> for &QDataStream

Source§

fn shr(self, f: *mut c_float) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(float& f).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<*mut i8> for &QDataStream

Source§

fn shr(self, i: *mut c_schar) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(signed char& i).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<*mut u8> for &QDataStream

Source§

fn shr(self, i: *mut c_uchar) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(unsigned char& i).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QBitArray>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QBitArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QBitArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QByteArray>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QByteArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QByteArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QCborArray>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QCborArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QCborArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QCborMap>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QCborMap>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QCborMap& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QCborValue>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QCborValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QCborValue& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QChar>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QChar>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QChar& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QDate>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QDate>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QDate& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QDateTime>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QDateTime>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QDateTime& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QEasingCurve>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QEasingCurve>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QEasingCurve& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QHashOfIntQByteArray>> for &QDataStream

Source§

fn shr(self, hash: Ref<QHashOfIntQByteArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QHash<int, QByteArray>& hash).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QHashOfQStringQVariant>> for &QDataStream

Source§

fn shr(self, hash: Ref<QHashOfQStringQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QHash<QString, QVariant>& hash).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QJsonArray>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QJsonArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QJsonArray& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QJsonDocument>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QJsonDocument>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QJsonDocument& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QJsonObject>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QJsonObject>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QJsonObject& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QJsonValue>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QJsonValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QJsonValue& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QLine>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QLine>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QLine& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QLineF>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QLineF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QLineF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfCountry>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfCountry>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QLocale::Country>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfDayOfWeek>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfDayOfWeek>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<Qt::DayOfWeek>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfInt>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfInt>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<int>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfQByteArray>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfQByteArray>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QByteArray>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfQLocale>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfQLocale>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QLocale>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfQPairOfQStringQString>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfQPairOfQStringQString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QPair<QString, QString>>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfQString>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfQString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QString>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfQUrl>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfQUrl>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QUrl>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QListOfQVariant>> for &QDataStream

Source§

fn shr(self, l: Ref<QListOfQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QList<QVariant>& l).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QLocale>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QLocale>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QLocale& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QMapOfIntQVariant>> for &QDataStream

Source§

fn shr(self, map: Ref<QMapOfIntQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QMap<int, QVariant>& map).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QMapOfQStringQVariant>> for &QDataStream

Source§

fn shr(self, map: Ref<QMapOfQStringQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QMap<QString, QVariant>& map).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QMargins>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QMargins>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QMargins& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QMarginsF>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QMarginsF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QMarginsF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPairOfDoubleQVariant>> for &QDataStream

Source§

fn shr(self, p: Ref<QPairOfDoubleQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QPair<double, QVariant>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPairOfLonglongUint>> for &QDataStream

Source§

fn shr(self, p: Ref<QPairOfLonglongUint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QPair<long long, unsigned int>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPairOfQCborValueQCborValue>> for &QDataStream

Source§

fn shr(self, p: Ref<QPairOfQCborValueQCborValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QPair<QCborValue, QCborValue>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPairOfQStringQJsonValue>> for &QDataStream

Source§

fn shr(self, p: Ref<QPairOfQStringQJsonValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QPair<QString, QJsonValue>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPairOfQStringQString>> for &QDataStream

Source§

fn shr(self, p: Ref<QPairOfQStringQString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QPair<QString, QString>& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPoint>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QPoint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QPoint& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QPointF>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QPointF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QPointF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QRect>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QRect>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QRect& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QRectF>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QRectF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QRectF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QRegExp>> for &QDataStream

Source§

fn shr(self, reg_exp: Ref<QRegExp>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& in, QRegExp& regExp).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QRegularExpression>> for &QDataStream

Source§

fn shr(self, re: Ref<QRegularExpression>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& in, QRegularExpression& re).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QSize>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QSize>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QSize& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QSizeF>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QSizeF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QSizeF& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QString>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QString>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QString& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QTime>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QTime>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QTime& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QTimeZone>> for &QDataStream

Source§

fn shr(self, tz: Ref<QTimeZone>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& ds, QTimeZone& tz).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QUrl>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QUrl>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QUrl& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QUuid>> for &QDataStream

Source§

fn shr(self, arg2: Ref<QUuid>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& arg1, QUuid& arg2).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVariant>> for &QDataStream

Source§

fn shr(self, p: Ref<QVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVariant& p).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVectorOfInt>> for &QDataStream

Source§

fn shr(self, v: Ref<QVectorOfInt>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVector<int>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVectorOfQCborValue>> for &QDataStream

Source§

fn shr(self, v: Ref<QVectorOfQCborValue>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVector<QCborValue>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVectorOfQPairOfDoubleQVariant>> for &QDataStream

Source§

fn shr(self, v: Ref<QVectorOfQPairOfDoubleQVariant>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVector<QPair<double, QVariant>>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVectorOfQPointF>> for &QDataStream

Source§

fn shr(self, v: Ref<QVectorOfQPointF>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVector<QPointF>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVectorOfUint>> for &QDataStream

Source§

fn shr(self, v: Ref<QVectorOfUint>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& s, QVector<unsigned int>& v).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<QVersionNumber>> for &QDataStream

Source§

fn shr(self, version: Ref<QVersionNumber>) -> Ref<QDataStream>

Calls C++ function: QDataStream& operator>>(QDataStream& in, QVersionNumber& version).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.
Source§

impl Shr<Ref<Qfloat16>> for &QDataStream

Source§

fn shr(self, f: Ref<Qfloat16>) -> Ref<QDataStream>

Calls C++ function: QDataStream& QDataStream::operator>>(qfloat16& f).

Source§

type Output = Ref<QDataStream>

The resulting type after applying the >> operator.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T, U> CastInto<U> for T
where U: CastFrom<T>,

Source§

unsafe fn cast_into(self) -> U

Performs the conversion. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> StaticUpcast<T> for T

Source§

unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>

Convert type of a const pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.