#[repr(u32)]pub enum Tvg_Stroke_Fill {
TVG_STROKE_FILL_PAD = 0,
TVG_STROKE_FILL_REFLECT = 1,
TVG_STROKE_FILL_REPEAT = 2,
}Expand description
@brief Enumeration specifying how to fill the area outside the gradient bounds.
Variants§
TVG_STROKE_FILL_PAD = 0
< The remaining area is filled with the closest stop color.
TVG_STROKE_FILL_REFLECT = 1
< The gradient pattern is reflected outside the gradient area until the expected region is filled.
TVG_STROKE_FILL_REPEAT = 2
< The gradient pattern is repeated continuously beyond the gradient area until the expected region is filled.
Trait Implementations§
Source§impl Clone for Tvg_Stroke_Fill
impl Clone for Tvg_Stroke_Fill
Source§fn clone(&self) -> Tvg_Stroke_Fill
fn clone(&self) -> Tvg_Stroke_Fill
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 Tvg_Stroke_Fill
impl Debug for Tvg_Stroke_Fill
Source§impl Hash for Tvg_Stroke_Fill
impl Hash for Tvg_Stroke_Fill
Source§impl PartialEq for Tvg_Stroke_Fill
impl PartialEq for Tvg_Stroke_Fill
Source§fn eq(&self, other: &Tvg_Stroke_Fill) -> bool
fn eq(&self, other: &Tvg_Stroke_Fill) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for Tvg_Stroke_Fill
impl Eq for Tvg_Stroke_Fill
impl StructuralPartialEq for Tvg_Stroke_Fill
Auto Trait Implementations§
impl Freeze for Tvg_Stroke_Fill
impl RefUnwindSafe for Tvg_Stroke_Fill
impl Send for Tvg_Stroke_Fill
impl Sync for Tvg_Stroke_Fill
impl Unpin for Tvg_Stroke_Fill
impl UnsafeUnpin for Tvg_Stroke_Fill
impl UnwindSafe for Tvg_Stroke_Fill
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