Struct rokol_ffi::gfx::sg_blend_state[][src]

#[repr(C)]
pub struct sg_blend_state { pub enabled: bool, pub src_factor_rgb: sg_blend_factor, pub dst_factor_rgb: sg_blend_factor, pub op_rgb: sg_blend_op, pub src_factor_alpha: sg_blend_factor, pub dst_factor_alpha: sg_blend_factor, pub op_alpha: sg_blend_op, }

Fields

enabled: boolsrc_factor_rgb: sg_blend_factordst_factor_rgb: sg_blend_factorop_rgb: sg_blend_opsrc_factor_alpha: sg_blend_factordst_factor_alpha: sg_blend_factorop_alpha: sg_blend_op

Trait Implementations

impl Clone for sg_blend_state[src]

impl Copy for sg_blend_state[src]

impl Debug for sg_blend_state[src]

impl Default for sg_blend_state[src]

impl Eq for sg_blend_state[src]

impl PartialEq<sg_blend_state> for sg_blend_state[src]

impl StructuralEq for sg_blend_state[src]

impl StructuralPartialEq for sg_blend_state[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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.