#[non_exhaustive]pub struct MetalSurfaceDescriptor {
pub extent: RenderTargetExtent,
pub context: MetalContextDescriptor,
pub layer: NativePointer,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.extent: RenderTargetExtent§context: MetalContextDescriptor§layer: NativePointerImplementations§
Source§impl MetalSurfaceDescriptor
impl MetalSurfaceDescriptor
pub fn new( extent: RenderTargetExtent, context: MetalContextDescriptor, layer: NativePointer, ) -> Self
Trait Implementations§
Source§impl Clone for MetalSurfaceDescriptor
impl Clone for MetalSurfaceDescriptor
Source§fn clone(&self) -> MetalSurfaceDescriptor
fn clone(&self) -> MetalSurfaceDescriptor
Returns a duplicate 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 MetalSurfaceDescriptor
impl Debug for MetalSurfaceDescriptor
Source§impl PartialEq for MetalSurfaceDescriptor
impl PartialEq for MetalSurfaceDescriptor
impl StructuralPartialEq for MetalSurfaceDescriptor
Auto Trait Implementations§
impl Freeze for MetalSurfaceDescriptor
impl RefUnwindSafe for MetalSurfaceDescriptor
impl !Send for MetalSurfaceDescriptor
impl !Sync for MetalSurfaceDescriptor
impl Unpin for MetalSurfaceDescriptor
impl UnsafeUnpin for MetalSurfaceDescriptor
impl UnwindSafe for MetalSurfaceDescriptor
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