Skip to main content

NullWindowRenderer

Struct NullWindowRenderer 

Source
pub struct NullWindowRenderer { /* private fields */ }

Implementations§

Trait Implementations§

Source§

impl Clone for NullWindowRenderer

Source§

fn clone(&self) -> NullWindowRenderer

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for NullWindowRenderer

Source§

impl Default for NullWindowRenderer

Source§

fn default() -> NullWindowRenderer

Returns the “default value” for a type. Read more
Source§

impl RenderContext for NullWindowRenderer

Source§

fn try_register_custom_resource( &mut self, resource: Box<dyn Any>, ) -> Result<ResourceId, RegisterResourceError>

Source§

fn unregister_resource(&mut self, resource_id: ResourceId)

Source§

fn renderer_specific_context(&self) -> Option<Box<dyn Any>>

Return a type-erased context type that is passed to custom widgets in order to enable them to render renderer-specific content
Source§

impl WindowRenderer for NullWindowRenderer

Source§

type ScenePainter<'a> = NullScenePainter where Self: 'a

Source§

fn resume<F: FnOnce() + 'static>( &mut self, _window: Arc<dyn WindowHandle>, _width: u32, _height: u32, on_ready: F, )

Begin resuming the renderer. on_ready fires when initialization completes — synchronously inside resume on native, asynchronously (via wasm_bindgen_futures::spawn_local) on wasm32-unknown-unknown. After it fires, the embedder must call complete_resume to transition the renderer to the active state.
Source§

fn complete_resume(&mut self) -> bool

Finalize a previously-initiated resume. Returns true once the renderer is active and ready to render. Idempotent on already-active renderers; returns false if a pending init has not yet produced a result. Read more
Source§

fn suspend(&mut self)

Source§

fn is_active(&self) -> bool

Source§

fn set_size(&mut self, _width: u32, _height: u32)

Source§

fn render<F: FnOnce(&mut Self::ScenePainter<'_>)>(&mut self, _draw_fn: F)

Source§

fn is_pending(&self) -> bool

Returns true while an asynchronous resume is in flight (after resume but before complete_resume has succeeded). Defaults to false for backends with synchronous initialization.

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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.
Source§

impl<T> WasmNotSend for T
where T: Send,

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T
where T: Sync,