#[repr(C)]
pub struct QAssociativeIterable { /* private fields */ }
Expand description

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

C++ class: QAssociativeIterable.

C++ documentation:

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

This class allows several methods of accessing the elements of an associative container held within a QVariant. An instance of QAssociativeIterable can be extracted from a QVariant if it can be converted to a QVariantHash or QVariantMap.

QHash<int, QString> mapping; mapping.insert(7, “Seven”); mapping.insert(11, “Eleven”); mapping.insert(42, “Forty-two”);

QVariant variant = QVariant::fromValue(mapping); if (variant.canConvert<QVariantHash>()) { QAssociativeIterable iterable = variant.value<QAssociativeIterable>(); // Can use foreach over the values: foreach (const QVariant &v, iterable) { qDebug() << v; } // Can use C++11 range-for over the values: for (const QVariant &v : iterable) { qDebug() << v; } // Can use iterators: QAssociativeIterable::const_iterator it = iterable.begin(); const QAssociativeIterable::const_iterator end = iterable.end(); for ( ; it != end; ++it) { qDebug() << *it; // The current value qDebug() << it.key(); qDebug() << it.value(); } }

The container itself is not copied before iterating over it.

Implementations§

source§

impl QAssociativeIterable

source

pub unsafe fn begin(&self) -> CppBox<ConstIterator>

Returns a QAssociativeIterable::const_iterator for the beginning of the container. This can be used in stl-style iteration.

Calls C++ function: QAssociativeIterable::const_iterator QAssociativeIterable::begin() const.

C++ documentation:

Returns a QAssociativeIterable::const_iterator for the beginning of the container. This can be used in stl-style iteration.

See also end().

source

pub unsafe fn copy_from( &self, other: impl CastInto<Ref<QAssociativeIterable>> ) -> Ref<QAssociativeIterable>

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

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

C++ documentation:

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

This class allows several methods of accessing the elements of an associative container held within a QVariant. An instance of QAssociativeIterable can be extracted from a QVariant if it can be converted to a QVariantHash or QVariantMap.

QHash<int, QString> mapping; mapping.insert(7, “Seven”); mapping.insert(11, “Eleven”); mapping.insert(42, “Forty-two”);

QVariant variant = QVariant::fromValue(mapping); if (variant.canConvert<QVariantHash>()) { QAssociativeIterable iterable = variant.value<QAssociativeIterable>(); // Can use foreach over the values: foreach (const QVariant &v, iterable) { qDebug() << v; } // Can use C++11 range-for over the values: for (const QVariant &v : iterable) { qDebug() << v; } // Can use iterators: QAssociativeIterable::const_iterator it = iterable.begin(); const QAssociativeIterable::const_iterator end = iterable.end(); for ( ; it != end; ++it) { qDebug() << *it; // The current value qDebug() << it.key(); qDebug() << it.value(); } }

The container itself is not copied before iterating over it.

source

pub unsafe fn end(&self) -> CppBox<ConstIterator>

Returns a QAssociativeIterable::const_iterator for the end of the container. This can be used in stl-style iteration.

Calls C++ function: QAssociativeIterable::const_iterator QAssociativeIterable::end() const.

C++ documentation:

Returns a QAssociativeIterable::const_iterator for the end of the container. This can be used in stl-style iteration.

See also begin().

source

pub unsafe fn find( &self, key: impl CastInto<Ref<QVariant>> ) -> CppBox<ConstIterator>

Returns a QAssociativeIterable::const_iterator for the given key key in the container, if the types are convertible.

Calls C++ function: QAssociativeIterable::const_iterator QAssociativeIterable::find(const QVariant& key) const.

C++ documentation:

Returns a QAssociativeIterable::const_iterator for the given key key in the container, if the types are convertible.

If the key is not found, returns end().

This can be used in stl-style iteration.

This function was introduced in Qt 5.5.

See also begin(), end(), and value().

source

pub unsafe fn new_copy( other: impl CastInto<Ref<QAssociativeIterable>> ) -> CppBox<QAssociativeIterable>

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

Calls C++ function: [constructor] void QAssociativeIterable::QAssociativeIterable(const QAssociativeIterable& other).

C++ documentation:

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

This class allows several methods of accessing the elements of an associative container held within a QVariant. An instance of QAssociativeIterable can be extracted from a QVariant if it can be converted to a QVariantHash or QVariantMap.

QHash<int, QString> mapping; mapping.insert(7, “Seven”); mapping.insert(11, “Eleven”); mapping.insert(42, “Forty-two”);

QVariant variant = QVariant::fromValue(mapping); if (variant.canConvert<QVariantHash>()) { QAssociativeIterable iterable = variant.value<QAssociativeIterable>(); // Can use foreach over the values: foreach (const QVariant &v, iterable) { qDebug() << v; } // Can use C++11 range-for over the values: for (const QVariant &v : iterable) { qDebug() << v; } // Can use iterators: QAssociativeIterable::const_iterator it = iterable.begin(); const QAssociativeIterable::const_iterator end = iterable.end(); for ( ; it != end; ++it) { qDebug() << *it; // The current value qDebug() << it.key(); qDebug() << it.value(); } }

The container itself is not copied before iterating over it.

source

pub unsafe fn size(&self) -> c_int

Returns the number of elements in the container.

Calls C++ function: int QAssociativeIterable::size() const.

C++ documentation:

Returns the number of elements in the container.

source

pub unsafe fn value( &self, key: impl CastInto<Ref<QVariant>> ) -> CppBox<QVariant>

Returns the value for the given key in the container, if the types are convertible.

Calls C++ function: QVariant QAssociativeIterable::value(const QVariant& key) const.

C++ documentation:

Returns the value for the given key in the container, if the types are convertible.

See also find().

Trait Implementations§

source§

impl Begin for QAssociativeIterable

source§

unsafe fn begin(&self) -> CppBox<ConstIterator>

Returns a QAssociativeIterable::const_iterator for the beginning of the container. This can be used in stl-style iteration.

Calls C++ function: QAssociativeIterable::const_iterator QAssociativeIterable::begin() const.

C++ documentation:

Returns a QAssociativeIterable::const_iterator for the beginning of the container. This can be used in stl-style iteration.

See also end().

§

type Output = CppBox<ConstIterator>

Output type.
source§

impl CppDeletable for QAssociativeIterable

source§

unsafe fn delete(&self)

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

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

C++ documentation:

The QAssociativeIterable class is an iterable interface for an associative container in a QVariant.

This class allows several methods of accessing the elements of an associative container held within a QVariant. An instance of QAssociativeIterable can be extracted from a QVariant if it can be converted to a QVariantHash or QVariantMap.

QHash<int, QString> mapping; mapping.insert(7, “Seven”); mapping.insert(11, “Eleven”); mapping.insert(42, “Forty-two”);

QVariant variant = QVariant::fromValue(mapping); if (variant.canConvert<QVariantHash>()) { QAssociativeIterable iterable = variant.value<QAssociativeIterable>(); // Can use foreach over the values: foreach (const QVariant &v, iterable) { qDebug() << v; } // Can use C++11 range-for over the values: for (const QVariant &v : iterable) { qDebug() << v; } // Can use iterators: QAssociativeIterable::const_iterator it = iterable.begin(); const QAssociativeIterable::const_iterator end = iterable.end(); for ( ; it != end; ++it) { qDebug() << *it; // The current value qDebug() << it.key(); qDebug() << it.value(); } }

The container itself is not copied before iterating over it.

source§

impl End for QAssociativeIterable

source§

unsafe fn end(&self) -> CppBox<ConstIterator>

Returns a QAssociativeIterable::const_iterator for the end of the container. This can be used in stl-style iteration.

Calls C++ function: QAssociativeIterable::const_iterator QAssociativeIterable::end() const.

C++ documentation:

Returns a QAssociativeIterable::const_iterator for the end of the container. This can be used in stl-style iteration.

See also begin().

§

type Output = CppBox<ConstIterator>

Output type.
source§

impl Size for QAssociativeIterable

source§

unsafe fn size(&self) -> usize

Returns the number of elements in the container.

Calls C++ function: int QAssociativeIterable::size() const.

C++ documentation:

Returns the number of elements in the container.

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>,

§

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>,

§

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.