[][src]Struct winapi::um::d2d1svg::ID2D1SvgDocumentVtbl

#[repr(C)]
pub struct ID2D1SvgDocumentVtbl {
    pub parent: ID2D1ResourceVtbl,
    pub SetViewportSize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, viewportSize: D2D1_SIZE_F) -> HRESULT,
    pub GetViewportSize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument) -> D2D1_SIZE_F,
    pub SetRoot: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, root: *mut ID2D1SvgElement) -> HRESULT,
    pub GetRoot: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, root: *mut *mut ID2D1SvgElement),
    pub FindElementById: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, id: PCWSTR, svgElement: *mut *mut ID2D1SvgElement) -> HRESULT,
    pub Serialize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, outputXmlStream: *mut IStream, subtree: *mut ID2D1SvgElement) -> HRESULT,
    pub Deserialize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, inputXmlStream: *mut IStream, subtree: *mut *mut ID2D1SvgElement) -> HRESULT,
    pub CreatePaint: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, paintType: D2D1_SVG_PAINT_TYPE, color: *const D2D1_COLOR_F, id: PCWSTR, paint: *mut *mut ID2D1SvgPaint) -> HRESULT,
    pub CreateStrokeDashArray: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, dashes: *const D2D1_SVG_LENGTH, dashesCount: UINT32, strokeDashArray: *mut *mut ID2D1SvgStrokeDashArray) -> HRESULT,
    pub CreatePointCollection: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, points: *const D2D1_POINT_2F, pountsCount: UINT32, pointCollection: *mut ID2D1SvgPointCollection) -> HRESULT,
    pub CreatePathData: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, segmentData: *const FLOAT, segmentDataCount: UINT32, commands: *const D2D1_SVG_PATH_COMMAND, commandsCount: UINT32, pathData: *mut *mut ID2D1SvgPathData) -> HRESULT,
}

Fields

parent: ID2D1ResourceVtblSetViewportSize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, viewportSize: D2D1_SIZE_F) -> HRESULTGetViewportSize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument) -> D2D1_SIZE_FSetRoot: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, root: *mut ID2D1SvgElement) -> HRESULTGetRoot: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, root: *mut *mut ID2D1SvgElement)FindElementById: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, id: PCWSTR, svgElement: *mut *mut ID2D1SvgElement) -> HRESULTSerialize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, outputXmlStream: *mut IStream, subtree: *mut ID2D1SvgElement) -> HRESULTDeserialize: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, inputXmlStream: *mut IStream, subtree: *mut *mut ID2D1SvgElement) -> HRESULTCreatePaint: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, paintType: D2D1_SVG_PAINT_TYPE, color: *const D2D1_COLOR_F, id: PCWSTR, paint: *mut *mut ID2D1SvgPaint) -> HRESULTCreateStrokeDashArray: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, dashes: *const D2D1_SVG_LENGTH, dashesCount: UINT32, strokeDashArray: *mut *mut ID2D1SvgStrokeDashArray) -> HRESULTCreatePointCollection: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, points: *const D2D1_POINT_2F, pountsCount: UINT32, pointCollection: *mut ID2D1SvgPointCollection) -> HRESULTCreatePathData: unsafe extern "system" fn(This: *mut ID2D1SvgDocument, segmentData: *const FLOAT, segmentDataCount: UINT32, commands: *const D2D1_SVG_PATH_COMMAND, commandsCount: UINT32, pathData: *mut *mut ID2D1SvgPathData) -> HRESULT

Auto Trait Implementations

Blanket Implementations

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T> From<T> for T[src]

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

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

The type returned in the event of a conversion error.

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

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

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