[][src]Struct qt_widgets::QPairOfDoubleQPointF

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

The QPair class is a template class that stores a pair of items.

C++ class: QPair<double, QPointF>.

C++ documentation:

The QPair class is a template class that stores a pair of items.

QPair<T1, T2> can be used in your application if the STL pair type is not available. It stores one value of type T1 and one value of type T2. It can be used as a return value for a function that needs to return two values, or as the value type of a generic container.

Here's an example of a QPair that stores one QString and one double value:

QPair<QString, double> pair;

The components are accessible as public data members called first and second. For example:

pair.first = "pi"; pair.second = 3.14159265358979323846;

Note, however, that it is almost always preferable to define a small struct to hold the result of a function with multiple return values. A struct trivially generalizes to more than two values, and allows more descriptive member names than first and second:

struct Variable { QString name; double value; }; Variable v; v.name = "pi"; v.value = 3.14159265358979323846;

The advent of C++11 automatic variable type deduction (auto) shifts the emphasis from the type name to the name of functions and members. Thus, QPair, like std::pair and std::tuple, is mostly useful in generic (template) code, where defining a dedicated type is not possible.

QPair's template data types (T1 and T2) must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *. A few functions have additional requirements; these requirements are documented on a per-function basis.

Methods

impl QPairOfDoubleQPointF[src]

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

The QPair class is a template class that stores a pair of items.

Calls C++ function: QPair<double, QPointF>& QPair<double, QPointF>::operator=(const QPair<double, QPointF>& other).

C++ documentation:

The QPair class is a template class that stores a pair of items.

QPair<T1, T2> can be used in your application if the STL pair type is not available. It stores one value of type T1 and one value of type T2. It can be used as a return value for a function that needs to return two values, or as the value type of a generic container.

Here's an example of a QPair that stores one QString and one double value:

QPair<QString, double> pair;

The components are accessible as public data members called first and second. For example:

pair.first = "pi"; pair.second = 3.14159265358979323846;

Note, however, that it is almost always preferable to define a small struct to hold the result of a function with multiple return values. A struct trivially generalizes to more than two values, and allows more descriptive member names than first and second:

struct Variable { QString name; double value; }; Variable v; v.name = "pi"; v.value = 3.14159265358979323846;

The advent of C++11 automatic variable type deduction (auto) shifts the emphasis from the type name to the name of functions and members. Thus, QPair, like std::pair and std::tuple, is mostly useful in generic (template) code, where defining a dedicated type is not possible.

QPair's template data types (T1 and T2) must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *. A few functions have additional requirements; these requirements are documented on a per-function basis.

pub unsafe fn new_0a() -> CppBox<QPairOfDoubleQPointF>[src]

Constructs an empty pair. The first and second elements are initialized with default-constructed values.

Calls C++ function: [constructor] void QPair<double, QPointF>::QPair().

C++ documentation:

Constructs an empty pair. The first and second elements are initialized with default-constructed values.

pub unsafe fn new_2a(
    t1: *const c_double,
    t2: impl CastInto<Ref<QPointF>>
) -> CppBox<QPairOfDoubleQPointF>
[src]

Constructs a pair and initializes the first element with value1 and the second element with value2.

Calls C++ function: [constructor] void QPair<double, QPointF>::QPair(const double& t1, const QPointF& t2).

C++ documentation:

Constructs a pair and initializes the first element with value1 and the second element with value2.

See also qMakePair().

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

The QPair class is a template class that stores a pair of items.

Calls C++ function: [constructor] void QPair<double, QPointF>::QPair(const QPair<double, QPointF>& other).

C++ documentation:

The QPair class is a template class that stores a pair of items.

QPair<T1, T2> can be used in your application if the STL pair type is not available. It stores one value of type T1 and one value of type T2. It can be used as a return value for a function that needs to return two values, or as the value type of a generic container.

Here's an example of a QPair that stores one QString and one double value:

QPair<QString, double> pair;

The components are accessible as public data members called first and second. For example:

pair.first = "pi"; pair.second = 3.14159265358979323846;

Note, however, that it is almost always preferable to define a small struct to hold the result of a function with multiple return values. A struct trivially generalizes to more than two values, and allows more descriptive member names than first and second:

struct Variable { QString name; double value; }; Variable v; v.name = "pi"; v.value = 3.14159265358979323846;

The advent of C++11 automatic variable type deduction (auto) shifts the emphasis from the type name to the name of functions and members. Thus, QPair, like std::pair and std::tuple, is mostly useful in generic (template) code, where defining a dedicated type is not possible.

QPair's template data types (T1 and T2) must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *. A few functions have additional requirements; these requirements are documented on a per-function basis.

pub unsafe fn swap(&self, other: impl CastInto<Ref<QPairOfDoubleQPointF>>)[src]

Swaps this pair with other.

Calls C++ function: void QPair<double, QPointF>::swap(QPair<double, QPointF>& other).

C++ documentation:

Swaps this pair with other.

Equivalent to

qSwap(this->first, other.first); qSwap(this->second, other.second);

Swap overloads are found in namespace std as well as via argument-dependent lookup (ADL) in the namespace of T .

This function was introduced in Qt 5.5.

Trait Implementations

impl CppDeletable for QPairOfDoubleQPointF[src]

unsafe fn delete(&self)[src]

The QPair class is a template class that stores a pair of items.

Calls C++ function: [destructor] void QPair<double, QPointF>::~QPair().

C++ documentation:

The QPair class is a template class that stores a pair of items.

QPair<T1, T2> can be used in your application if the STL pair type is not available. It stores one value of type T1 and one value of type T2. It can be used as a return value for a function that needs to return two values, or as the value type of a generic container.

Here's an example of a QPair that stores one QString and one double value:

QPair<QString, double> pair;

The components are accessible as public data members called first and second. For example:

pair.first = "pi"; pair.second = 3.14159265358979323846;

Note, however, that it is almost always preferable to define a small struct to hold the result of a function with multiple return values. A struct trivially generalizes to more than two values, and allows more descriptive member names than first and second:

struct Variable { QString name; double value; }; Variable v; v.name = "pi"; v.value = 3.14159265358979323846;

The advent of C++11 automatic variable type deduction (auto) shifts the emphasis from the type name to the name of functions and members. Thus, QPair, like std::pair and std::tuple, is mostly useful in generic (template) code, where defining a dedicated type is not possible.

QPair's template data types (T1 and T2) must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *. A few functions have additional requirements; these requirements are documented on a per-function basis.

impl PartialEq<Ref<QPairOfDoubleQPointF>> for QPairOfDoubleQPointF[src]

fn eq(&self, p2: &Ref<QPairOfDoubleQPointF>) -> bool[src]

Returns true if c1 and c2 are the same Unicode character; otherwise returns false.

Calls C++ function: bool operator==(const QPair<double, QPointF>& p1, const QPair<double, QPointF>& p2).

Warning: no exact match found in C++ documentation. Below is the C++ documentation for bool operator==(QChar c1, QChar c2):

Returns true if c1 and c2 are the same Unicode character; otherwise returns false.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> StaticUpcast<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.