[][src]Struct qt_core::QDebug

#[repr(C)]
pub struct QDebug { /* fields omitted */ }

The QDebug class provides an output stream for debugging information.

C++ class: QDebug.

C++ documentation:

The QDebug class provides an output stream for debugging information.

QDebug is used whenever the developer needs to write out debugging or tracing information to a device, file, string or console.

Methods

impl QDebug[src]

pub unsafe fn auto_insert_spaces(&self) -> bool[src]

Returns true if this QDebug instance will automatically insert spaces between writes.

Calls C++ function: bool QDebug::autoInsertSpaces() const.

C++ documentation:

Returns true if this QDebug instance will automatically insert spaces between writes.

This function was introduced in Qt 5.0.

See also setAutoInsertSpaces() and QDebugStateSaver.

pub unsafe fn copy_from(
    &mut self,
    other: impl CastInto<Ref<QDebug>>
) -> MutRef<QDebug>
[src]

Assigns the other debug stream to this stream and returns a reference to this stream.

Calls C++ function: QDebug& QDebug::operator=(const QDebug& other).

C++ documentation:

Assigns the other debug stream to this stream and returns a reference to this stream.

pub unsafe fn maybe_quote_1a(&mut self, c: c_char) -> MutRef<QDebug>[src]

Writes a character c to the debug stream, depending on the current setting for automatic insertion of quotes, and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::maybeQuote(char c = …).

C++ documentation:

Writes a character c to the debug stream, depending on the current setting for automatic insertion of quotes, and returns a reference to the stream.

The default character is a double quote ".

This function was introduced in Qt 5.4.

See also quote() and noquote().

pub unsafe fn maybe_quote_0a(&mut self) -> MutRef<QDebug>[src]

Writes a character c to the debug stream, depending on the current setting for automatic insertion of quotes, and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::maybeQuote().

C++ documentation:

Writes a character c to the debug stream, depending on the current setting for automatic insertion of quotes, and returns a reference to the stream.

The default character is a double quote ".

This function was introduced in Qt 5.4.

See also quote() and noquote().

pub unsafe fn maybe_space(&mut self) -> MutRef<QDebug>[src]

Writes a space character to the debug stream, depending on the current setting for automatic insertion of spaces, and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::maybeSpace().

C++ documentation:

Writes a space character to the debug stream, depending on the current setting for automatic insertion of spaces, and returns a reference to the stream.

See also space() and nospace().

pub unsafe fn from_q_io_device(
    device: impl CastInto<MutPtr<QIODevice>>
) -> CppBox<QDebug>
[src]

Constructs a debug stream that writes to the given device.

Calls C++ function: [constructor] void QDebug::QDebug(QIODevice* device).

C++ documentation:

Constructs a debug stream that writes to the given device.

pub unsafe fn from_q_string(
    string: impl CastInto<MutPtr<QString>>
) -> CppBox<QDebug>
[src]

Constructs a debug stream that writes to the given string.

Calls C++ function: [constructor] void QDebug::QDebug(QString* string).

C++ documentation:

Constructs a debug stream that writes to the given string.

pub unsafe fn from_qt_msg_type(t: QtMsgType) -> CppBox<QDebug>[src]

Constructs a debug stream that writes to the handler for the message type specified by type.

Calls C++ function: [constructor] void QDebug::QDebug(QtMsgType t).

C++ documentation:

Constructs a debug stream that writes to the handler for the message type specified by type.

pub unsafe fn new_copy(o: impl CastInto<Ref<QDebug>>) -> CppBox<QDebug>[src]

Constructs a copy of the other debug stream.

Calls C++ function: [constructor] void QDebug::QDebug(const QDebug& o).

C++ documentation:

Constructs a copy of the other debug stream.

pub unsafe fn noquote(&mut self) -> MutRef<QDebug>[src]

Disables automatic insertion of quotation characters around QChar, QString and QByteArray contents and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::noquote().

C++ documentation:

Disables automatic insertion of quotation characters around QChar, QString and QByteArray contents and returns a reference to the stream.

When quoting is disabled, these types are printed without quotation characters and without escaping of non-printable characters.

This function was introduced in Qt 5.4.

See also quote() and maybeQuote().

pub unsafe fn nospace(&mut self) -> MutRef<QDebug>[src]

Disables automatic insertion of spaces and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::nospace().

C++ documentation:

Disables automatic insertion of spaces and returns a reference to the stream.

See also space() and maybeSpace().

pub unsafe fn quote(&mut self) -> MutRef<QDebug>[src]

Enables automatic insertion of quotation characters around QChar, QString and QByteArray contents and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::quote().

C++ documentation:

Enables automatic insertion of quotation characters around QChar, QString and QByteArray contents and returns a reference to the stream.

Quoting is enabled by default.

This function was introduced in Qt 5.4.

See also noquote() and maybeQuote().

pub unsafe fn reset_format(&mut self) -> MutRef<QDebug>[src]

Resets the stream formatting options, bringing it back to its original constructed state.

Calls C++ function: QDebug& QDebug::resetFormat().

C++ documentation:

Resets the stream formatting options, bringing it back to its original constructed state.

This function was introduced in Qt 5.4.

See also space() and quote().

pub unsafe fn set_auto_insert_spaces(&mut self, b: bool)[src]

Enables automatic insertion of spaces between writes if b is true; otherwise automatic insertion of spaces is disabled.

Calls C++ function: void QDebug::setAutoInsertSpaces(bool b).

C++ documentation:

Enables automatic insertion of spaces between writes if b is true; otherwise automatic insertion of spaces is disabled.

This function was introduced in Qt 5.0.

See also autoInsertSpaces() and QDebugStateSaver.

pub unsafe fn set_verbosity(&mut self, verbosity_level: c_int)[src]

Sets the verbosity of the stream to verbosityLevel.

Calls C++ function: void QDebug::setVerbosity(int verbosityLevel).

C++ documentation:

Sets the verbosity of the stream to verbosityLevel.

The allowed range is from 0 to 7. The default value is 2.

This function was introduced in Qt 5.6.

See also verbosity().

pub unsafe fn shl_short(&mut self, t: c_short) -> MutRef<QDebug>[src]

Writes the signed short integer, i, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(short t).

C++ documentation:

Writes the signed short integer, i, to the stream and returns a reference to the stream.

pub unsafe fn shl_ushort(&mut self, t: c_ushort) -> MutRef<QDebug>[src]

Writes then unsigned short integer, i, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(unsigned short t).

C++ documentation:

Writes then unsigned short integer, i, to the stream and returns a reference to the stream.

pub unsafe fn shl_int(&mut self, t: c_int) -> MutRef<QDebug>[src]

Writes the signed integer, i, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(int t).

C++ documentation:

Writes the signed integer, i, to the stream and returns a reference to the stream.

pub unsafe fn shl_uint(&mut self, t: c_uint) -> MutRef<QDebug>[src]

Writes then unsigned integer, i, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(unsigned int t).

C++ documentation:

Writes then unsigned integer, i, to the stream and returns a reference to the stream.

pub unsafe fn shl_long(&mut self, t: c_long) -> MutRef<QDebug>[src]

Writes the signed long integer, l, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(long t).

C++ documentation:

Writes the signed long integer, l, to the stream and returns a reference to the stream.

pub unsafe fn shl_ulong(&mut self, t: c_ulong) -> MutRef<QDebug>[src]

Writes then unsigned long integer, l, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(unsigned long t).

C++ documentation:

Writes then unsigned long integer, l, to the stream and returns a reference to the stream.

pub unsafe fn shl_u64(&mut self, t: u64) -> MutRef<QDebug>[src]

Writes then unsigned 64-bit integer, i, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(quint64 t).

C++ documentation:

Writes then unsigned 64-bit integer, i, to the stream and returns a reference to the stream.

pub unsafe fn shl_double(&mut self, t: c_double) -> MutRef<QDebug>[src]

Writes the 64-bit floating point number, f, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(double t).

C++ documentation:

Writes the 64-bit floating point number, f, to the stream and returns a reference to the stream.

pub unsafe fn space(&mut self) -> MutRef<QDebug>[src]

Writes a space character to the debug stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::space().

C++ documentation:

Writes a space character to the debug stream and returns a reference to the stream.

The stream remembers that automatic insertion of spaces is enabled for future writes.

See also nospace() and maybeSpace().

pub unsafe fn swap(&mut self, other: impl CastInto<MutRef<QDebug>>)[src]

Swaps this debug stream instance with other. This function is very fast and never fails.

Calls C++ function: void QDebug::swap(QDebug& other).

C++ documentation:

Swaps this debug stream instance with other. This function is very fast and never fails.

This function was introduced in Qt 5.0.

pub unsafe fn verbosity(&self) -> c_int[src]

Returns the verbosity of the debug stream.

Calls C++ function: int QDebug::verbosity() const.

C++ documentation:

Returns the verbosity of the debug stream.

Streaming operators can check the value to decide whether verbose output is desired and print more information depending on the level. Higher values indicate that more information is desired.

The allowed range is from 0 to 7. The default value is 2.

This function was introduced in Qt 5.6.

See also setVerbosity().

Trait Implementations

impl<'_> Shl<Ref<QRegExp>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QRegExp>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QRegExp& arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ptr<QObject>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ptr<QObject>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QObject* arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QVariant& arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Type> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Type) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, QVariant::Type arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QModelIndex>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QModelIndex>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QModelIndex& arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QPersistentModelIndex>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QPersistentModelIndex>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QPersistentModelIndex& arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QBitArray>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QBitArray>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QLocale>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QLocale>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QDate>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QDate>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QTime>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QTime>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QDateTime>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QDateTime>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QChar>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ref<QChar>) -> MutRef<QDebug>[src]

Writes the character, t, to the stream and returns a reference to the stream. Normally, QDebug prints control characters and non-US-ASCII characters as their C escape sequences or their Unicode value (\u1234). To print non-printable characters without transformation, enable the noquote() functionality, but note that some QDebug backends may not be 8-bit clean and may not be able to represent t.

Calls C++ function: QDebug& QDebug::operator<<(QChar t).

C++ documentation:

Writes the character, t, to the stream and returns a reference to the stream. Normally, QDebug prints control characters and non-US-ASCII characters as their C escape sequences or their Unicode value (\u1234). To print non-printable characters without transformation, enable the noquote() functionality, but note that some QDebug backends may not be 8-bit clean and may not be able to represent t.

impl<'_> Shl<bool> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: bool) -> MutRef<QDebug>[src]

Writes the boolean value, t, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(bool t).

C++ documentation:

Writes the boolean value, t, to the stream and returns a reference to the stream.

impl<'_> Shl<i8> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: c_char) -> MutRef<QDebug>[src]

Writes the character, t, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(char t).

C++ documentation:

Writes the character, t, to the stream and returns a reference to the stream.

impl<'_> Shl<u16> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: char16_t) -> MutRef<QDebug>[src]

Writes the UTF-16 character, t, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(char16_t t).

C++ documentation:

Writes the UTF-16 character, t, to the stream and returns a reference to the stream.

This function was introduced in Qt 5.5.

impl<'_> Shl<u32> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: char32_t) -> MutRef<QDebug>[src]

Writes the UTF-32 character, t, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(char32_t t).

C++ documentation:

Writes the UTF-32 character, t, to the stream and returns a reference to the stream.

This function was introduced in Qt 5.5.

impl<'_> Shl<i64> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: i64) -> MutRef<QDebug>[src]

Writes the signed 64-bit integer, i, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(qint64 t).

C++ documentation:

Writes the signed 64-bit integer, i, to the stream and returns a reference to the stream.

impl<'_> Shl<f32> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: c_float) -> MutRef<QDebug>[src]

Writes the 32-bit floating point number, f, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(float t).

C++ documentation:

Writes the 32-bit floating point number, f, to the stream and returns a reference to the stream.

impl<'_> Shl<Ptr<i8>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ptr<c_char>) -> MutRef<QDebug>[src]

Writes the '\0'-terminated string, s, to the stream and returns a reference to the stream. The string is never quoted nor transformed to the output, but note that some QDebug backends might not be 8-bit clean.

Calls C++ function: QDebug& QDebug::operator<<(const char* t).

C++ documentation:

Writes the '\0'-terminated string, s, to the stream and returns a reference to the stream. The string is never quoted nor transformed to the output, but note that some QDebug backends might not be 8-bit clean.

impl<'_> Shl<Ref<QString>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ref<QString>) -> MutRef<QDebug>[src]

Writes the string, s, to the stream and returns a reference to the stream. Normally, QDebug prints the string inside quotes and transforms non-printable characters to their Unicode values (\u1234).

Calls C++ function: QDebug& QDebug::operator<<(const QString& t).

C++ documentation:

Writes the string, s, to the stream and returns a reference to the stream. Normally, QDebug prints the string inside quotes and transforms non-printable characters to their Unicode values (\u1234).

To print non-printable characters without transformation, enable the noquote() functionality. Note that some QDebug backends might not be 8-bit clean.

Output examples:

QString s;

s = "a"; qDebug().noquote() << s; // prints: a qDebug() << s; // prints: "a"

s = ""a\r\n""; qDebug() << s; // prints: ""a\r\n""

s = "\033"; // escape character qDebug() << s; // prints: "\u001B"

s = "\u00AD"; // SOFT HYPHEN qDebug() << s; // prints: "\u00AD"

s = "\u00E1"; // LATIN SMALL LETTER A WITH ACUTE qDebug() << s; // prints: "á"

s = "a\u0301"; // "a" followed by COMBINING ACUTE ACCENT qDebug() << s; // prints: "á";

s = "\u0430\u0301"; // CYRILLIC SMALL LETTER A followed by COMBINING ACUTE ACCENT qDebug() << s; // prints: "а́"

impl<'_> Shl<Ref<QStringRef>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ref<QStringRef>) -> MutRef<QDebug>[src]

Writes the string, s, to the stream and returns a reference to the stream. Normally, QDebug prints the string inside quotes and transforms non-printable characters to their Unicode values (\u1234).

Calls C++ function: QDebug& QDebug::operator<<(const QStringRef& t).

C++ documentation:

Writes the string, s, to the stream and returns a reference to the stream. Normally, QDebug prints the string inside quotes and transforms non-printable characters to their Unicode values (\u1234).

To print non-printable characters without transformation, enable the noquote() functionality. Note that some QDebug backends might not be 8-bit clean.

See the QString overload for examples.

impl<'_> Shl<Ref<QLatin1String>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ref<QLatin1String>) -> MutRef<QDebug>[src]

Writes the string, s, to the stream and returns a reference to the stream. Normally, QDebug prints the string inside quotes and transforms non-printable characters to their Unicode values (\u1234).

Calls C++ function: QDebug& QDebug::operator<<(QLatin1String t).

C++ documentation:

Writes the string, s, to the stream and returns a reference to the stream. Normally, QDebug prints the string inside quotes and transforms non-printable characters to their Unicode values (\u1234).

To print non-printable characters without transformation, enable the noquote() functionality. Note that some QDebug backends might not be 8-bit clean.

See the QString overload for examples.

impl<'_> Shl<Ref<QByteArray>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ref<QByteArray>) -> MutRef<QDebug>[src]

Writes the byte array, b, to the stream and returns a reference to the stream. Normally, QDebug prints the array inside quotes and transforms control or non-US-ASCII characters to their C escape sequences (\xAB). This way, the output is always 7-bit clean and the string can be copied from the output and pasted back into C++ sources, if necessary.

Calls C++ function: QDebug& QDebug::operator<<(const QByteArray& t).

C++ documentation:

Writes the byte array, b, to the stream and returns a reference to the stream. Normally, QDebug prints the array inside quotes and transforms control or non-US-ASCII characters to their C escape sequences (\xAB). This way, the output is always 7-bit clean and the string can be copied from the output and pasted back into C++ sources, if necessary.

To print non-printable characters without transformation, enable the noquote() functionality. Note that some QDebug backends might not be 8-bit clean.

Output examples:

QByteArray ba;

ba = "a"; qDebug().noquote() << ba; // prints: a qDebug() << ba; // prints: "a"

ba = ""a\r\n""; qDebug() << ba; // prints: ""a\r\n""

ba = "\033"; // escape character qDebug() << ba; // prints: "\x1B"

ba = "\xC3\xA1"; qDebug() << ba; // prints: "\xC3\xA1"

ba = QByteArray("a\0b", 3); qDebug() << ba // prints: "\a\x00""b"

Note how QDebug needed to close and reopen the string in the way C and C++ languages concatenate string literals so that the letter 'b' is not interpreted as part of the previous hexadecimal escape sequence.

impl<'_> Shl<Ptr<c_void>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, t: Ptr<c_void>) -> MutRef<QDebug>[src]

Writes a pointer, p, to the stream and returns a reference to the stream.

Calls C++ function: QDebug& QDebug::operator<<(const void* t).

C++ documentation:

Writes a pointer, p, to the stream and returns a reference to the stream.

impl<'_> Shl<Ref<QTextStreamManipulator>> for &'_ QDebug[src]

type Output = MutRef<QDebug>

The resulting type after applying the << operator.

fn shl(self, m: Ref<QTextStreamManipulator>) -> MutRef<QDebug>[src]

Calls C++ function: QDebug& QDebug::operator<<(QTextStreamManipulator m).

impl<'_> Shl<Ref<QDir>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, dir: Ref<QDir>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QDir& dir).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QEasingCurve>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, item: Ref<QEasingCurve>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QEasingCurve& item).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QItemSelectionRange>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QItemSelectionRange>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QItemSelectionRange& arg2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QJsonValue>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QJsonValue>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QJsonArray>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QJsonArray>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QJsonDocument>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QJsonDocument>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QJsonObject>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QJsonObject>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVersionNumber>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, version: Ref<QVersionNumber>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug arg1, const QVersionNumber& version).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QPoint>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QPoint>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QPointF>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, p: Ref<QPointF>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug d, const QPointF& p).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QLine>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, p: Ref<QLine>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug d, const QLine& p).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QLineF>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, p: Ref<QLineF>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug d, const QLineF& p).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QMargins>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QMargins>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QMarginsF>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QMarginsF>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QMimeType>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, mime: Ref<QMimeType>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QMimeType& mime).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QSize>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QSize>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QSizeF>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QSizeF>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QRect>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QRect>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QRectF>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QRectF>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QRegularExpression>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, re: Ref<QRegularExpression>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QRegularExpression& re).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QRegularExpressionMatch>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, match_: Ref<QRegularExpressionMatch>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QRegularExpressionMatch& match).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QTimeZone>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, tz: Ref<QTimeZone>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug dbg, const QTimeZone& tz).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QUrl>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QUrl>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QUuid>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, arg2: Ref<QUuid>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQString>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQString>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QString>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQItemSelectionRange>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQItemSelectionRange>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QItemSelectionRange>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQObject>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQObject>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QObject*>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QVariant>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQByteArray>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQByteArray>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QByteArray>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQModelIndex>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQModelIndex>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QModelIndex>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQPersistentModelIndex>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQPersistentModelIndex>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QPersistentModelIndex>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQAbstractState>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQAbstractState>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QAbstractState*>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQAbstractAnimation>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQAbstractAnimation>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QAbstractAnimation*>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfDayOfWeek>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfDayOfWeek>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<Qt::DayOfWeek>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQLocale>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQLocale>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QLocale>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfCountry>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfCountry>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QLocale::Country>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQUrl>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQUrl>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QUrl>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQMimeType>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQMimeType>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QMimeType>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQAbstractTransition>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQAbstractTransition>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QAbstractTransition*>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfInt>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfInt>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<int>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QListOfQPairOfQStringQString>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, list: Ref<QListOfQPairOfQStringQString>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QList<QPair<QString, QString>>& list).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVectorOfQStringRef>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, vec: Ref<QVectorOfQStringRef>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QVector<QStringRef>& vec).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVectorOfUint>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, vec: Ref<QVectorOfUint>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QVector<unsigned int>& vec).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVectorOfInt>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, vec: Ref<QVectorOfInt>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QVector<int>& vec).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVectorOfQPointF>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, vec: Ref<QVectorOfQPointF>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QVector<QPointF>& vec).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QVectorOfQPairOfDoubleQVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, vec: Ref<QVectorOfQPairOfDoubleQVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QVector<QPair<double, QVariant>>& vec).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QMapOfQStringQVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, map: Ref<QMapOfQStringQVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QMapOfIntQVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, map: Ref<QMapOfIntQVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QHashOfQStringQVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, hash: Ref<QHashOfQStringQVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QHashOfIntQByteArray>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, hash: Ref<QHashOfIntQByteArray>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QPairOfQStringQJsonValue>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, pair: Ref<QPairOfQStringQJsonValue>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QPair<QString, QJsonValue>& pair).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QPairOfDoubleQVariant>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, pair: Ref<QPairOfDoubleQVariant>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QPair<double, QVariant>& pair).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QPairOfQStringQString>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, pair: Ref<QPairOfQStringQString>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QPair<QString, QString>& pair).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<Ref<QSetOfQAbstractState>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, set: Ref<QSetOfQAbstractState>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

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

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<MouseButton>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<MouseButton>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::MouseButton>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<Orientation>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<Orientation>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::Orientation>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<KeyboardModifier>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<KeyboardModifier>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::KeyboardModifier>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<WindowType>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<WindowType>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::WindowType>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<AlignmentFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<AlignmentFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::AlignmentFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<Edge>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<Edge>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::Edge>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ImageConversionFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ImageConversionFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::ImageConversionFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<DockWidgetArea>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<DockWidgetArea>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::DockWidgetArea>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ToolBarArea>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ToolBarArea>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::ToolBarArea>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<WindowState>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<WindowState>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::WindowState>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ScreenOrientation>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ScreenOrientation>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::ScreenOrientation>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<DropAction>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<DropAction>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::DropAction>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ItemFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ItemFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::ItemFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<MatchFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<MatchFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::MatchFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<TextInteractionFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<TextInteractionFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::TextInteractionFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<InputMethodQuery>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<InputMethodQuery>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::InputMethodQuery>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<InputMethodHint>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<InputMethodHint>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::InputMethodHint>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<TouchPointState>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<TouchPointState>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::TouchPointState>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<MouseEventFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<MouseEventFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::MouseEventFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<GestureFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<GestureFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::GestureFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<Base64Option>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<Base64Option>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QByteArray::Base64Option>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<SectionFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<SectionFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QString::SectionFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<TypeFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<TypeFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QMetaType::TypeFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<FindChildOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<FindChildOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<Qt::FindChildOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ProcessEventsFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ProcessEventsFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QEventLoop::ProcessEventsFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<OpenModeFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<OpenModeFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QIODevice::OpenModeFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<NumberOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<NumberOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QLocale::NumberOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<Flag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<Flag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QCommandLineOption::Flag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<NumberFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<NumberFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QTextStream::NumberFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<Permission>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<Permission>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QFileDevice::Permission>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<FileHandleFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<FileHandleFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QFileDevice::FileHandleFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<SortFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<SortFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QDir::SortFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<Filter>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<Filter>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QDir::Filter>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<IteratorFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<IteratorFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QDirIterator::IteratorFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<SelectionFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<SelectionFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QItemSelectionModel::SelectionFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<LoadHint>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<LoadHint>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QLibrary::LoadHint>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<PatternOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<PatternOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QRegularExpression::PatternOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<MatchOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<MatchOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QRegularExpression::MatchOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<LocateOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<LocateOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QStandardPaths::LocateOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<BoundaryReason>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<BoundaryReason>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QTextBoundaryFinder::BoundaryReason>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ConversionFlag>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ConversionFlag>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QTextCodec::ConversionFlag>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<UserInputResolutionOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<UserInputResolutionOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QUrl::UserInputResolutionOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl<'_> Shl<QFlags<ComponentFormattingOption>> for &'_ QDebug[src]

type Output = CppBox<QDebug>

The resulting type after applying the << operator.

fn shl(self, flags: QFlags<ComponentFormattingOption>) -> CppBox<QDebug>[src]

Writes bit array ba to stream out.

Calls C++ function: QDebug operator<<(QDebug debug, const QFlags<QUrl::ComponentFormattingOption>& flags).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for QDataStream &operator<<(QDataStream &out, const QBitArray &ba):

Writes bit array ba to stream out.

See also Format of the QDataStream operators.

impl CppDeletable for QDebug[src]

unsafe fn delete(&mut self)[src]

Flushes any pending data to be written and destroys the debug stream.

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

C++ documentation:

Flushes any pending data to be written and destroys the debug stream.

Auto Trait Implementations

impl Send for QDebug

impl Sync for QDebug

impl Unpin for QDebug

impl UnwindSafe for QDebug

impl RefUnwindSafe for QDebug

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]