Struct wgpu::core::any_surface::AnySurface

source ·
pub struct AnySurface(/* private fields */);
Available on wgpu_core only.
Expand description

A Arc of a HalSurface<A>, for any backend A.

Any AnySurface is just like an Arc<HalSurface<A>>, except that the A type parameter is erased. To access the Surface, you must downcast to a particular backend with the [downcast_ref] or [take] methods.

Implementations§

source§

impl AnySurface

source

pub fn new<A>(surface: HalSurface<A>) -> AnySurface
where A: HalApi,

Return an AnySurface that holds an owning Arc to HalSurface.

source

pub fn backend(&self) -> Backend

source

pub fn downcast_ref<A>(&self) -> Option<&HalSurface<A>>
where A: HalApi,

If self is an Arc<HalSurface<A>>, return a reference to the HalSurface.

source

pub fn take<A>(self) -> Option<Arc<HalSurface<A>>>
where A: HalApi,

If self is an Arc<HalSurface<A>>, returns that.

Trait Implementations§

source§

impl Debug for AnySurface

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Send for AnySurface

Available on send_sync only.
source§

impl Sync for AnySurface

Available on send_sync only.

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> Downcast<T> for T

source§

fn downcast(&self) -> &T

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, U> TryFrom<U> for T
where U: Into<T>,

§

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

§

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> Upcast<T> for T

source§

fn upcast(&self) -> Option<&T>

source§

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

source§

impl<T> WasmNotSendSync for T

source§

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