#[non_exhaustive]pub struct OpenGLSurfaceDescriptor {
pub extent: RenderTargetExtent,
pub context: OpenGLContextDescriptor,
pub surface: 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: OpenGLContextDescriptor§surface: NativePointerImplementations§
Source§impl OpenGLSurfaceDescriptor
impl OpenGLSurfaceDescriptor
pub fn new( extent: RenderTargetExtent, context: OpenGLContextDescriptor, surface: NativePointer, ) -> Self
Trait Implementations§
Source§impl Clone for OpenGLSurfaceDescriptor
impl Clone for OpenGLSurfaceDescriptor
Source§fn clone(&self) -> OpenGLSurfaceDescriptor
fn clone(&self) -> OpenGLSurfaceDescriptor
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 OpenGLSurfaceDescriptor
impl Debug for OpenGLSurfaceDescriptor
Source§impl PartialEq for OpenGLSurfaceDescriptor
impl PartialEq for OpenGLSurfaceDescriptor
impl StructuralPartialEq for OpenGLSurfaceDescriptor
Auto Trait Implementations§
impl Freeze for OpenGLSurfaceDescriptor
impl RefUnwindSafe for OpenGLSurfaceDescriptor
impl !Send for OpenGLSurfaceDescriptor
impl !Sync for OpenGLSurfaceDescriptor
impl Unpin for OpenGLSurfaceDescriptor
impl UnsafeUnpin for OpenGLSurfaceDescriptor
impl UnwindSafe for OpenGLSurfaceDescriptor
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