Trait ID2D1SvgPointCollection_Impl
pub trait ID2D1SvgPointCollection_Impl: ID2D1SvgAttribute_Impl {
// Required methods
fn RemovePointsAtEnd(&self, pointscount: u32) -> Result<()>;
fn UpdatePoints(
&self,
points: *const D2D_POINT_2F,
pointscount: u32,
startindex: u32,
) -> Result<()>;
fn GetPoints(
&self,
points: *mut D2D_POINT_2F,
pointscount: u32,
startindex: u32,
) -> Result<()>;
fn GetPointsCount(&self) -> u32;
}
Required Methods§
fn RemovePointsAtEnd(&self, pointscount: u32) -> Result<()>
fn UpdatePoints( &self, points: *const D2D_POINT_2F, pointscount: u32, startindex: u32, ) -> Result<()>
fn GetPoints( &self, points: *mut D2D_POINT_2F, pointscount: u32, startindex: u32, ) -> Result<()>
fn GetPointsCount(&self) -> u32
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.