[][src]Struct polyhorn_core::Instance

pub struct Instance<P: ?Sized> where
    P: Platform
{ /* fields omitted */ }

Implementations

impl<P: ?Sized> Instance<P> where
    P: Platform
[src]

pub fn new(
    renderer: Rc<Renderer<P>>,
    parent: Option<Rc<Instance<P>>>,
    element: Element<P>,
    container: P::ContainerID
) -> Instance<P>
[src]

pub fn renderer(&self) -> &Rc<Renderer<P>>[src]

pub fn container(&self) -> P::ContainerID[src]

pub fn context(&self) -> &ContextTree[src]

pub fn topology(&self) -> Ref<'_, Topology<P>>[src]

pub fn topology_mut(&self) -> RefMut<'_, Topology<P>>[src]

pub fn memory(&self) -> Ref<'_, Memory>[src]

pub fn memory_mut(&self) -> RefMut<'_, Memory>[src]

Auto Trait Implementations

impl<P> !RefUnwindSafe for Instance<P>

impl<P> !Send for Instance<P>

impl<P> !Sync for Instance<P>

impl<P: ?Sized> Unpin for Instance<P> where
    <P as Platform>::Component: Unpin,
    <P as Platform>::ContainerID: Unpin

impl<P> !UnwindSafe for Instance<P>

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