pub trait SurfaceTypeTrait: Sealed {
    // Required method
    fn surface_type() -> SurfaceType;
}
Expand description

The marker trait to indicate the type of the surface.

Required Methods§

source

fn surface_type() -> SurfaceType

Get the type of the surface.

Object Safety§

This trait is not object safe.

Implementors§