pub enum RunnerWindowCompositedAlphaSourceV1 {
Unavailable,
ExplicitTrue,
ExplicitFalse,
ImpliedByMaterialCreateTime,
DefaultOpaque,
}Variants§
The runner does not support composited alpha windows.
ExplicitTrue
The caller explicitly requested transparent=true.
ExplicitFalse
The caller explicitly requested transparent=false.
ImpliedByMaterialCreateTime
The window was created composited because a non-None backdrop material was requested.
DefaultOpaque
The caller omitted transparent and no implied material required composition.
Trait Implementations§
Source§impl Clone for RunnerWindowCompositedAlphaSourceV1
impl Clone for RunnerWindowCompositedAlphaSourceV1
Source§fn clone(&self) -> RunnerWindowCompositedAlphaSourceV1
fn clone(&self) -> RunnerWindowCompositedAlphaSourceV1
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 RunnerWindowCompositedAlphaSourceV1
impl PartialEq for RunnerWindowCompositedAlphaSourceV1
Source§fn eq(&self, other: &RunnerWindowCompositedAlphaSourceV1) -> bool
fn eq(&self, other: &RunnerWindowCompositedAlphaSourceV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RunnerWindowCompositedAlphaSourceV1
impl Eq for RunnerWindowCompositedAlphaSourceV1
impl StructuralPartialEq for RunnerWindowCompositedAlphaSourceV1
Auto Trait Implementations§
impl Freeze for RunnerWindowCompositedAlphaSourceV1
impl RefUnwindSafe for RunnerWindowCompositedAlphaSourceV1
impl Send for RunnerWindowCompositedAlphaSourceV1
impl Sync for RunnerWindowCompositedAlphaSourceV1
impl Unpin for RunnerWindowCompositedAlphaSourceV1
impl UnsafeUnpin for RunnerWindowCompositedAlphaSourceV1
impl UnwindSafe for RunnerWindowCompositedAlphaSourceV1
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