[][src]Struct remote_canvas::ContextDataWebgl

pub struct ContextDataWebgl {
    pub alpha: bool,
    pub desynchronized: bool,
    pub antialias: bool,
    pub depth: bool,
    pub fail_if_major_performance_caveat: bool,
    pub power_preference: WebglPowerPreference,
    pub premultiplied_alpha: bool,
    pub preserve_drawing_buffer: bool,
    pub stencil: bool,
}

Fields

alpha: booldesynchronized: boolantialias: booldepth: boolfail_if_major_performance_caveat: boolpower_preference: WebglPowerPreferencepremultiplied_alpha: boolpreserve_drawing_buffer: boolstencil: bool

Trait Implementations

impl Debug for ContextDataWebgl[src]

impl Default for ContextDataWebgl[src]

impl<'de> Deserialize<'de> for ContextDataWebgl[src]

impl Serialize for ContextDataWebgl[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,