pub enum SurfaceType<NativeWidget> {
    Generic {
        size: Size2D<i32>,
    },
    Widget {
        native_widget: NativeWidget,
    },
}
Expand description

Information specific to the type of surface: generic or widget.

Variants§

§

Generic

Fields

§size: Size2D<i32>

The size of the surface.

For HiDPI screens, this is a physical size, not a logical size.

An off-screen surface that has a pixel size. Generic surfaces can sometimes be shown on screen using platform-specific APIs, but surfman itself provides no way to draw their contents on screen. Only generic surfaces can be bound to textures.

§

Widget

Fields

§native_widget: NativeWidget

A native widget type specific to the backend.

For example, on Windows this wraps an HWND.

A surface displayed inside a native widget (window or view). The size of a widget surface is automatically determined based on the size of the widget. (For example, if the widget is a window, the size of the surface will be the physical size of the window.) Widget surfaces cannot be bound to textures.

Trait Implementations§

source§

impl<NativeWidget: Clone> Clone for SurfaceType<NativeWidget>

source§

fn clone(&self) -> SurfaceType<NativeWidget>

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<NativeWidget> RefUnwindSafe for SurfaceType<NativeWidget>where NativeWidget: RefUnwindSafe,

§

impl<NativeWidget> Send for SurfaceType<NativeWidget>where NativeWidget: Send,

§

impl<NativeWidget> Sync for SurfaceType<NativeWidget>where NativeWidget: Sync,

§

impl<NativeWidget> Unpin for SurfaceType<NativeWidget>where NativeWidget: Unpin,

§

impl<NativeWidget> UnwindSafe for SurfaceType<NativeWidget>where NativeWidget: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. 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 Twhere 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 Twhere T: Clone,

§

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 Twhere 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 Twhere 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.