[][src]Struct direct2d::brush::gradient::linear::LinearGradientBrush

#[repr(transparent)]
pub struct LinearGradientBrush { /* fields omitted */ }

Paints an area with a linear gradient.

Methods

impl LinearGradientBrush[src]

pub fn create<'a>(context: &'a RenderTarget) -> LinearGradientBrushBuilder<'a>[src]

pub fn start_point(&self) -> Point2f[src]

Retrieves the starting coordinates of the linear gradient.

pub fn end_point(&self) -> Point2f[src]

Retrieves the ending coordinates of the linear gradient.

pub fn gradient_stop_collection(&self) -> GradientStopCollection[src]

Retrieves the GradientStopCollection associated with this linear gradient brush.

Methods from Deref<Target = Brush>

pub fn opacity(&self) -> f32[src]

pub fn transform(&self) -> Matrix3x2f[src]

Trait Implementations

impl Sync for LinearGradientBrush[src]

impl Clone for LinearGradientBrush[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Send for LinearGradientBrush[src]

impl Deref for LinearGradientBrush[src]

type Target = Brush

The resulting type after dereferencing.

impl Debug for LinearGradientBrush[src]

impl ComWrapper for LinearGradientBrush[src]

type Interface = ID2D1LinearGradientBrush

The raw interface type from winapi

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> FontKey for T where
    T: Send + Sync + 'static + ?Sized
[src]