#[repr(u32)]pub enum VisualServerEnvironmentGlowBlendMode {
GlowBlendModeAdditive = 0,
GlowBlendModeScreen = 1,
GlowBlendModeSoftlight = 2,
GlowBlendModeReplace = 3,
}
Variants§
GlowBlendModeAdditive = 0
GlowBlendModeScreen = 1
GlowBlendModeSoftlight = 2
GlowBlendModeReplace = 3
Trait Implementations§
Source§impl Clone for VisualServerEnvironmentGlowBlendMode
impl Clone for VisualServerEnvironmentGlowBlendMode
Source§fn clone(&self) -> VisualServerEnvironmentGlowBlendMode
fn clone(&self) -> VisualServerEnvironmentGlowBlendMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl PartialEq for VisualServerEnvironmentGlowBlendMode
impl PartialEq for VisualServerEnvironmentGlowBlendMode
Source§fn eq(&self, other: &VisualServerEnvironmentGlowBlendMode) -> bool
fn eq(&self, other: &VisualServerEnvironmentGlowBlendMode) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for VisualServerEnvironmentGlowBlendMode
impl Eq for VisualServerEnvironmentGlowBlendMode
impl StructuralPartialEq for VisualServerEnvironmentGlowBlendMode
Auto Trait Implementations§
impl Freeze for VisualServerEnvironmentGlowBlendMode
impl RefUnwindSafe for VisualServerEnvironmentGlowBlendMode
impl Send for VisualServerEnvironmentGlowBlendMode
impl Sync for VisualServerEnvironmentGlowBlendMode
impl Unpin for VisualServerEnvironmentGlowBlendMode
impl UnwindSafe for VisualServerEnvironmentGlowBlendMode
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