pub struct StripAlphaFillSegment {
pub fill: StripFillSegment,
pub alpha_idx: u32,
}Expand description
A fill region with alpha coverage.
Fields§
§fill: StripFillSegmentThe fill region covered by this alpha segment.
alpha_idx: u32The index into the alpha buffer of the segment.
Trait Implementations§
Source§impl Clone for StripAlphaFillSegment
impl Clone for StripAlphaFillSegment
Source§fn clone(&self) -> StripAlphaFillSegment
fn clone(&self) -> StripAlphaFillSegment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StripAlphaFillSegment
impl Debug for StripAlphaFillSegment
Source§impl Deref for StripAlphaFillSegment
impl Deref for StripAlphaFillSegment
Source§impl DerefMut for StripAlphaFillSegment
impl DerefMut for StripAlphaFillSegment
Source§impl PartialEq for StripAlphaFillSegment
impl PartialEq for StripAlphaFillSegment
Source§fn eq(&self, other: &StripAlphaFillSegment) -> bool
fn eq(&self, other: &StripAlphaFillSegment) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StripAlphaFillSegment
impl Eq for StripAlphaFillSegment
impl StructuralPartialEq for StripAlphaFillSegment
Auto Trait Implementations§
impl Freeze for StripAlphaFillSegment
impl RefUnwindSafe for StripAlphaFillSegment
impl Send for StripAlphaFillSegment
impl Sync for StripAlphaFillSegment
impl Unpin for StripAlphaFillSegment
impl UnsafeUnpin for StripAlphaFillSegment
impl UnwindSafe for StripAlphaFillSegment
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