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

#[repr(C)]
pub struct ID2D1SvgElement { pub lpVtbl: *const ID2D1SvgElementVtbl, }

Fields

lpVtbl: *const ID2D1SvgElementVtbl

Methods

impl ID2D1SvgElement[src]

pub unsafe fn GetDocument(&self, document: *mut *mut ID2D1SvgDocument)[src]

pub unsafe fn GetTagName(&self, name: PWSTR, nameCount: UINT32) -> HRESULT[src]

pub unsafe fn GetTagNameLength(&self) -> UINT32[src]

pub unsafe fn IsTextContent(&self) -> BOOL[src]

pub unsafe fn GetParent(&self, parent: *mut *mut ID2D1SvgElement)[src]

pub unsafe fn HasChildren(&self) -> BOOL[src]

pub unsafe fn GetFirstChild(&self, child: *mut *mut ID2D1SvgElement)[src]

pub unsafe fn GetLastChild(&self, child: *mut *mut ID2D1SvgElement)[src]

pub unsafe fn GetPreviousChild(
    &self,
    referenceChild: *mut ID2D1SvgElement,
    previousChild: *mut *mut ID2D1SvgElement
) -> HRESULT
[src]

pub unsafe fn GetNextChild(
    &self,
    referenceChild: *mut ID2D1SvgElement,
    nextChild: *mut *mut ID2D1SvgElement
) -> HRESULT
[src]

pub unsafe fn InsertChildBefore(
    &self,
    newChild: *mut ID2D1SvgElement,
    referenceChild: *mut ID2D1SvgElement
) -> HRESULT
[src]

pub unsafe fn AppendChild(&self, newChild: *mut ID2D1SvgElement) -> HRESULT[src]

pub unsafe fn ReplaceChild(
    &self,
    newChild: *mut ID2D1SvgElement,
    oldChild: *mut ID2D1SvgElement
) -> HRESULT
[src]

pub unsafe fn RemoveChild(&self, oldChild: *mut ID2D1SvgElement) -> HRESULT[src]

pub unsafe fn IsAttributeSpecified(
    &self,
    name: PCWSTR,
    inherited: *mut BOOL
) -> BOOL
[src]

pub unsafe fn GetSpecifiedAttributeCount(&self) -> UINT32[src]

pub unsafe fn GetSpecifiedAttributeName(
    &self,
    index: UINT32,
    name: PWSTR,
    nameCount: UINT32,
    inherited: *mut BOOL
) -> HRESULT
[src]

pub unsafe fn GetSpecifiedAttributeNameLength(
    &self,
    index: UINT32,
    nameLength: *mut UINT32,
    inherited: *mut BOOL
) -> HRESULT
[src]

pub unsafe fn RemoveAttribute(&self, name: PCWSTR) -> HRESULT[src]

pub unsafe fn SetTextValue(
    &self,
    name: *const WCHAR,
    nameCount: UINT32
) -> HRESULT
[src]

pub unsafe fn GetTextValue(&self, name: PWSTR, nameCount: UINT32) -> HRESULT[src]

pub unsafe fn GetTextValueLength(&self) -> UINT32[src]

pub unsafe fn SetAttributeValue_1(
    &self,
    name: PCWSTR,
    value: *mut ID2D1SvgAttribute
) -> HRESULT
[src]

pub unsafe fn SetAttributeValue_2(
    &self,
    name: PCWSTR,
    type_: D2D1_SVG_ATTRIBUTE_POD_TYPE,
    value: *const c_void,
    valueSizeInBytes: UINT32
) -> HRESULT
[src]

pub unsafe fn SetAttributeValue_3(
    &self,
    name: PCWSTR,
    type_: D2D1_SVG_ATTRIBUTE_STRING_TYPE,
    value: PCWSTR
) -> HRESULT
[src]

pub unsafe fn GetAttributeValue_1(
    &self,
    name: PCWSTR,
    riid: REFIID,
    value: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn GetAttributeValue_2(
    &self,
    name: PCWSTR,
    type_: D2D1_SVG_ATTRIBUTE_POD_TYPE,
    value: *mut c_void,
    valueSizeInBytes: UINT32
) -> HRESULT
[src]

pub unsafe fn GetAttributeValue_3(
    &self,
    name: PCWSTR,
    type_: D2D1_SVG_ATTRIBUTE_STRING_TYPE,
    value: PWSTR,
    valueCount: UINT32
) -> HRESULT
[src]

pub unsafe fn GetAttributeValueLength(
    &self,
    name: PCWSTR,
    type_: D2D1_SVG_ATTRIBUTE_STRING_TYPE,
    valueLength: *mut UINT32
) -> HRESULT
[src]

Methods from Deref<Target = ID2D1Resource>

pub unsafe fn GetFactory(&self, factory: *mut *mut ID2D1Factory)[src]

Trait Implementations

impl Interface for ID2D1SvgElement[src]

impl Deref for ID2D1SvgElement[src]

type Target = ID2D1Resource

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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