pub enum LayerInit {
WebGLLayer {
antialias: bool,
depth: bool,
stencil: bool,
alpha: bool,
ignore_depth_values: bool,
framebuffer_scale_factor: f32,
},
ProjectionLayer {
depth: bool,
stencil: bool,
alpha: bool,
scale_factor: f32,
},
}
Variants§
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for LayerInit
impl<'de> Deserialize<'de> for LayerInit
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for LayerInit
Auto Trait Implementations§
impl Freeze for LayerInit
impl RefUnwindSafe for LayerInit
impl Send for LayerInit
impl Sync for LayerInit
impl Unpin for LayerInit
impl UnwindSafe for LayerInit
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