pub enum DispatchExternalTexture {
Core(Arc<CoreExternalTexture>),
Custom(DynExternalTexture),
}
Available on
custom
only.Variants§
Implementations§
Source§impl DispatchExternalTexture
impl DispatchExternalTexture
pub fn as_core(&self) -> &CoreExternalTexture
Available on
wgpu_core
only.pub fn as_core_opt(&self) -> Option<&CoreExternalTexture>
Available on
wgpu_core
only.pub fn as_custom<T: ExternalTextureInterface>(&self) -> Option<&T>
pub fn custom<T: ExternalTextureInterface>(t: T) -> Self
Trait Implementations§
Source§impl Clone for DispatchExternalTexture
impl Clone for DispatchExternalTexture
Source§fn clone(&self) -> DispatchExternalTexture
fn clone(&self) -> DispatchExternalTexture
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DispatchExternalTexture
impl Debug for DispatchExternalTexture
Source§impl Deref for DispatchExternalTexture
impl Deref for DispatchExternalTexture
Source§impl From<CoreExternalTexture> for DispatchExternalTexture
Available on wgpu_core
only.
impl From<CoreExternalTexture> for DispatchExternalTexture
Available on
wgpu_core
only.Source§fn from(value: CoreExternalTexture) -> Self
fn from(value: CoreExternalTexture) -> Self
Converts to this type from the input type.
Source§impl Hash for DispatchExternalTexture
impl Hash for DispatchExternalTexture
Source§impl Ord for DispatchExternalTexture
impl Ord for DispatchExternalTexture
Source§fn cmp(&self, other: &DispatchExternalTexture) -> Ordering
fn cmp(&self, other: &DispatchExternalTexture) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DispatchExternalTexture
impl PartialEq for DispatchExternalTexture
Source§impl PartialOrd for DispatchExternalTexture
impl PartialOrd for DispatchExternalTexture
impl Eq for DispatchExternalTexture
impl StructuralPartialEq for DispatchExternalTexture
Auto Trait Implementations§
impl Freeze for DispatchExternalTexture
impl !RefUnwindSafe for DispatchExternalTexture
impl Send for DispatchExternalTexture
impl Sync for DispatchExternalTexture
impl Unpin for DispatchExternalTexture
impl !UnwindSafe for DispatchExternalTexture
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.