pub trait ID2D1StrokeStyle_Impl: Sized + ID2D1Resource_Impl {
    // Required methods
    fn GetStartCap(&self) -> D2D1_CAP_STYLE;
    fn GetEndCap(&self) -> D2D1_CAP_STYLE;
    fn GetDashCap(&self) -> D2D1_CAP_STYLE;
    fn GetMiterLimit(&self) -> f32;
    fn GetLineJoin(&self) -> D2D1_LINE_JOIN;
    fn GetDashOffset(&self) -> f32;
    fn GetDashStyle(&self) -> D2D1_DASH_STYLE;
    fn GetDashesCount(&self) -> u32;
    fn GetDashes(&self, dashes: *mut f32, dashescount: u32);
}

Required Methods§

fn GetStartCap(&self) -> D2D1_CAP_STYLE

fn GetEndCap(&self) -> D2D1_CAP_STYLE

fn GetDashCap(&self) -> D2D1_CAP_STYLE

fn GetMiterLimit(&self) -> f32

fn GetLineJoin(&self) -> D2D1_LINE_JOIN

fn GetDashOffset(&self) -> f32

fn GetDashStyle(&self) -> D2D1_DASH_STYLE

fn GetDashesCount(&self) -> u32

fn GetDashes(&self, dashes: *mut f32, dashescount: u32)

Object Safety§

This trait is not object safe.

Implementors§