[][src]Struct qt_3d_core::QBackendNodeMapper

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

Creates and maps backend nodes to their respective frontend nodes

C++ class: Qt3DCore::QBackendNodeMapper.

C++ documentation:

Creates and maps backend nodes to their respective frontend nodes

Methods

impl QBackendNodeMapper[src]

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

Creates and maps backend nodes to their respective frontend nodes

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

C++ documentation:

Creates and maps backend nodes to their respective frontend nodes

pub unsafe fn destroy(&self, id: impl CastInto<Ref<QNodeId>>)[src]

Destroys the backend node for the given node id.

Calls C++ function: pure virtual void Qt3DCore::QBackendNodeMapper::destroy(Qt3DCore::QNodeId id) const.

C++ documentation:

Destroys the backend node for the given node id.

pub unsafe fn get(
    &self,
    id: impl CastInto<Ref<QNodeId>>
) -> MutPtr<QBackendNode>
[src]

Returns backend node for the given node id.

Calls C++ function: pure virtual Qt3DCore::QBackendNode* Qt3DCore::QBackendNodeMapper::get(Qt3DCore::QNodeId id) const.

C++ documentation:

Returns backend node for the given node id.

Trait Implementations

impl CppDeletable for QBackendNodeMapper[src]

unsafe fn delete(&mut self)[src]

Destroys the instance of QBackendNodeMapper. The destructor is virtual.

Calls C++ function: virtual [destructor] void Qt3DCore::QBackendNodeMapper::~QBackendNodeMapper().

C++ documentation:

Destroys the instance of QBackendNodeMapper. The destructor is virtual.

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.