pub enum SpanKind {
Opaque,
Transparent,
Partial,
}Expand description
What kind of pixels a span contains.
Variants§
Opaque
All pixels are 1.0 — skip entirely.
Transparent
All pixels are 0.0 — zero the pixel data.
Partial
Mixed values — fill mask buffer and multiply this range only.
Trait Implementations§
impl Copy for SpanKind
impl Eq for SpanKind
impl StructuralPartialEq for SpanKind
Auto Trait Implementations§
impl Freeze for SpanKind
impl RefUnwindSafe for SpanKind
impl Send for SpanKind
impl Sync for SpanKind
impl Unpin for SpanKind
impl UnsafeUnpin for SpanKind
impl UnwindSafe for SpanKind
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