Struct qmetaobject::QPointer[][src]

pub struct QPointer<T: QObject + ?Sized>(_, _);

A Wrapper around a QPointer

Implementations

impl<T: QObject + ?Sized> QPointer<T>[src]

pub fn cpp_ptr(&self) -> *mut c_void[src]

Returns a pointer to the cpp object (null if it was deleted)

pub fn as_ref(&self) -> Option<&T>[src]

Returns a reference to the QObject, or None if it was deleted

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

Returns true if the object was default constructed or constructed with an object which is now deleted

impl<T: QObject> QPointer<T>[src]

pub fn as_pinned(&self) -> Option<QObjectPinned<'_, T>>[src]

Returns a pinned reference to the QObject, or None if it was deleted

Trait Implementations

impl<T: QObject + ?Sized> Clone for QPointer<T>[src]

impl<T: QObject> Default for QPointer<T>[src]

impl<'a, T: QObject + ?Sized> From<&'a T> for QPointer<T>[src]

fn from(obj: &'a T) -> Self[src]

Creates a QPointer from a reference to a QObject. The corresponding C++ object must have already been created.

impl<T> PropertyType for QPointer<T> where
    T: QObject
[src]

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for QPointer<T> where
    T: RefUnwindSafe

impl<T> !Send for QPointer<T>

impl<T> !Sync for QPointer<T>

impl<T: ?Sized> Unpin for QPointer<T>

impl<T: ?Sized> UnwindSafe for QPointer<T> where
    T: RefUnwindSafe

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.